如何使表格列宽动态?

时间:2011-07-05 13:10:51

标签: html css xhtml

如何根据列内的数据动态更改表列宽度? (我将表宽度定义为100%,因为列宽度表现不同)。

2 个答案:

答案 0 :(得分:2)

听起来您正在寻找nowrap元素的td属性。更多信息here。像这样:

<table>
  <tr>
    <td nowrap>
      This is a long sentence which constitutes a lot of data that shouldn't wrap when rendered.
    </td>
  </tr>
</table>

展示here

答案 1 :(得分:0)

默认情况下...它根据列内容设置列宽,它设置为该特定列中的最大内容长度。