如何使用数据列而不是行来设置表的样式? (或者如何构建一个表格,其中列标题与行标题相关?)
答案 0 :(得分:1)
很难从你的问题中看出来,但听起来你想知道如何在表格中设置列的样式。你需要的是col tag。
以下是一个例子:
<table>
<col/>
<col style="background-color: #ffff00"/>
<col/>
<thead>
<th>One</th>
<th>Two</th>
<th>Three</th>
</thead>
<tr>
<td>One</td>
<td>Two</td>
<td>Three</td>
</tr>
</table>
答案 1 :(得分:0)
You can use divs。然后,在每一列中,您可以为每一行使用更多的div。