有没有办法在div中使用table-header-group和table-footer-group而不是在thead或tfoot?
根据www.w3.org,允许display: table-header-group在父(包含div的元素)显示为表或内联表时使用.所以应该允许这样的事情
<table>
<div style="display: table-header-group;">header group</div>
</table>
Run Code Online (Sandbox Code Playgroud)
如果父项不是表,则应根据www.w3.org页面上的第4点插入表.
最大的问题是,所有(主要)浏览器是否支持此功能.特别是IE(6)因不支持大多数类型的显示类型而闻名.