0

我需要垂直绘制表格,就像所有标题都将作为行的左侧而不是顶部。有没有像这样画表格的模板?

4

1 回答 1

1

您可以<th>用作第一个单元格:

<table>
    <tr>
        <th>Header</th>
        <td>Row content</td>
        <td>Row content</td>
    </tr>
    <tr>
        <th>Header</th>
        <td>Row content</td>
        <td>Row content</td>
    </tr>
    <tr>
        <th>Header</th>
        <td>Row content</td>
        <td>Row content</td>
    </tr>
</table>

见例子 - http://jsfiddle.net/ZQH93/

于 2013-10-23T09:05:58.750 回答