使列的宽度固定并将单词包装到下一行

时间:2014-11-03 02:45:57

标签: html css fixed word-wrap

我尝试将两列的宽度设置为固定:

.thkqgiai{
    width:20% !important;
}

.thkqso{
    width:80% !important;
}

.tdkqgiai{
    text-align:center;
}

.tdkqso{
    text-align:center;
    word-wrap:break-word !important;
}

thkqgiaitdkqgiai分别是第一列的thtd

thkqsotdkqso分别是第二列的thtd

如何使列的宽度保持固定,长文本将换行到下一行?

enter image description here

1 个答案:

答案 0 :(得分:1)

只需要应用表格布局即可修复:

table{
  table-layout: fixed;
}

默认情况下,table-layout为auto。