文本不会在表格内包装

时间:2014-01-30 11:25:24

标签: css

我希望我的表格中的文字能够自动换行。约束是我无法更改HTML,因为它是由服务器生成的。

我创建了JSFiddle

如果它不起作用:

<div style="width: 25%">
    <table class="af_selectManyCheckbox" id="pt1:r1:1:smc1" cellpadding="0" cellspacing="0" border="0">
        <tbody>
            <tr>
                <td class="af_selectManyCheckbox_label" valign="top"/>
                <td valign="top" class="AFContentCell" nowrap="">
                    <div class="af_selectManyCheckbox_content">
                        <div>
                            <span class="af_selectManyCheckbox_content-input">
                                <input class="af_selectManyCheckbox_native-input" type="checkbox" value="0"/>
                            </span>
                            <label class="af_selectManyCheckbox_item-text">It allows a component to partially refresh another component whose partialSubmit property is set to true.</label>
                        </div>
                    </div>
                </td>
            </tr>
        </tbody>
    </table>
</div>

1 个答案:

答案 0 :(得分:5)

你走了。

<强> WORKING DEMO

CSS代码:

.col-md-3 label {
    white-space: normal;
}

希望这有帮助。