文字无法包装

时间:2018-04-17 21:33:00

标签: html css html5 css3

在下面的表格中,较长的描述是在DESKTOP模式中将表格排除在一条长行之外。这在预览中是正确的,因为电话设备的预览包装。 LINK 我们如何解决这个问题?

enter image description here

1 个答案:

答案 0 :(得分:1)

正在应用此CSS规则:

.form-sub-label-container {
    white-space: nowrap;
}

要避免这种情况,请将其删除(如果可以),或者在自定义CSS中使用以下规则覆盖它:

.form-sub-label-container {
    white-space: normal;
}