我該如何得到一個水平和垂直的標題表?表中的垂直和水平標題?
所以e.g
header1 header2 header3
header1 1 1 1
header2 2 2 2
header3 3 3 3
我該如何得到一個水平和垂直的標題表?表中的垂直和水平標題?
所以e.g
header1 header2 header3
header1 1 1 1
header2 2 2 2
header3 3 3 3
容易。剛剛離開第一td
在第一tr
- 空
雖然你仍然可以只<th>
在第一列中的條目,有一個<thead>
/<tbody>
,我所知道的無柱當量。
就像@UlrichSchwarz說的那樣,您可以在第一列中使用<th>
而不是<td>
。使用範圍,你可以把它更多的語義描述:
<table>
<tr>
<th></th>
<th scope="col">header1</th>
<th scope="col">header2</th>
<th scope="col">header3</th>
</tr>
<tr>
<th scope="row">header 1</th>
<td>1</td>
<td>1</td>
<td>1</td>
</tr>
<tr>
<th scope="row">header 2</th>
<td>2</td>
<td>2</td>
<td>2</td>
</tr>
<tr>
<th scope="row">header 3</th>
<td>3</td>
<td>3</td>
<td>3</td>
</tr>
</table>
它甚至有可能嗎?有人,幫助!我需要完成這個! –