显示列宽不起作用

时间:2014-02-14 11:21:38

标签: css

我无法为显示列指定特定宽度,这是我的代码

<display:table name="" htmlId="" class="display-table" cellspacing="0" cellpadding="0" style="width :100%">
    ...                                                 
   <display:column title="" style="width: 20%;">
    ...                                                     
</display:table>

这是我试过的css

.display-table { table-layout: fixed; width: 100% }
.display-table td { word-wrap: break-word; }

但它总是显示与所有列到表格相同的记录。我无法修改此特定列。

1 个答案:

答案 0 :(得分:1)

删除table-layout: fixed;,因为这会使列大小相等

.display-table {  width: 100% }