是否可以在列上使用(2012 年 9 月最新的)flexbox 规范<table>
?我有一个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>
s重建表flex
?