填满桌子宽度

时间:2013-06-06 14:54:05

标签: css css3 html-table flexbox

是否可以在<table>列上使用(最新的2012年9月)flexbox规范?我有一个表width是固定的,有几列,其中一些应该适合单元格内容的宽度,另一些应该填满表width。我认为必须在下面的结构中使用<col>

<table>
  <colgroup>
    <col></col> // This should shrink/grow to fit the max width of the cell in this column
    <col></col> // Same with this
    <col></col> // This should fill up the width of the table, somewhat like `flex: 1`
  </colgroup>
  <tbody>
    ...
  </tbody>
</table>

如果不是,那么有解决方法吗?例如,是否可以使用<div>重建具有嵌套flex的表?

0 个答案:

没有答案