列で (最新の 2012 年 9 月) フレックスボックス仕様を使用することは可能<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
ですか?