现在,我正在使用<table>
HTML 显示表格数据,这在语义上是正确的。我想知道是否有办法在查看数据时更改数据的显示方式以减少表格的外观。
我的标记目前看起来像这样:
<table>
<thead>
<tr>
<th scope='col'>Vehicle</th>
<th scope='col'>License plate</th>
<th scope='col'>Location</th>
<th scope='col'>Deployment date</th>
<th scope='col'>Date of last inspection</th>
<th scope='col'>Last inspection at</th>
</tr>
</thead>
<tbody>
<tr itemscope>
<th scope='row' itemprop='primary_key_id'> ... </th>
<td itemprop='license_plate'> ... </td>
<td itemprop='location'> ... </td>
<td itemprop='deployment_date'><time> ... </time></td>
<td itemprop='last_inspection_date'><time> ... </time></td>
<td itemprop='last_inspection_odometer'> ... </td>
</tr>
</tbody>
</table>
当然,表格中不止一辆车,但这就是我现在显示数据的方式。还有其他列,出于我的示例的目的,我将坚持使用这六个。
我希望做更多的列表视图,但我不确定在此处使用<ul>
anddisplay: table-*
是否在语义上是正确的,因为这是表格数据。我知道我也可以将单元格与块级元素一起<span itemprop='...'>
放入<td>
单元格中,以按照我想要的方式排列内容,但我也不确定这是否正确。
演示方面,这就是我想要实现的目标:
<table>
<tbody>
<tr itemscope>
<th scope='row'>
<b itemprop='primary_key_id'> ... </b>
<div itemprop='license_plate'> ... </div>
</th>
<td>
<p>Located at: <span itemprop='location'> ... </span>
<p>Deployed at: <time itemprop='deployment_date'> ... </time>
</td>
<td>
Last inspected on <time itemprop='last_inspection_date'> ... </time>
at <span itemprop='last_inspection_odometer'> ... </span>
</td>
</tr>
</tbody>
</table>
但在这种情况下,我不只是使用表格标记将信息设置为三列吗?如果我这样做会有所不同吗?
<ul>
<li itemscope>
<div class='column'>
<b itemprop='primary_key_id'> ... </b>
<div itemprop='license_plate'> ... </div>
</div>
<div class='column'>
<p>Located at: <span itemprop='location'> ... </span>
<p>Deployed at: <time itemprop='deployment_date'> ... </time>
</div>
<div class='column'>
Last inspected on <time itemprop='last_inspection_date'> ... </time>
at <span itemprop='last_inspection_odometer'> ... </span>
</div>
</li>
</ul>
标记和设置数据样式的最佳方法是什么?