【发布时间】:2018-09-30 06:09:48
【问题描述】:
我在这里有一个简单的表格,其中 tbody 在 thead 之前
该表格仍然适用于头部上方的身体,但这是有效的,并且适用于所有现代浏览器。
我这样做是为了解决粘性标题的问题
<table>
<tbody>
<tr>
<td>One</td>
<td>Two</td>
<td>Three</td>
</tr>
<tbody>
<thead>
<tr>
<th>Header 1</th>
<th>Header 2</th>
<th>Header 3</th>
</tr>
</thead>
<table>
【问题讨论】:
-
如果没有错的话,这个问题的答案已经过时了stackoverflow.com/questions/49926153/…
标签: html html-table