【发布时间】:2019-04-06 04:41:18
【问题描述】:
如果我有一个带有标题和表格行的表格,我是否需要使用 thead、tbody 和 tfoot 标签? 也可以在 td 上上课还是使用 span 更好? 以下是我的做法,但我有一些疑问。
<table class="table-myTable">
<caption>Courseware Production Status</caption>
<tr>
<th>A</th>
<th>B</th>
<th>C</th>
</tr>
<tr>
<td>1</td>
<td>2</td>
<td class="myClass">3</td>
</tr>
</table>
【问题讨论】:
标签: html html-table