是否可以在<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
的表?