どのように水平と垂直の両方のヘッダーを持つテーブルを取得できますか?テーブル内の縦型ヘッダーと横型ヘッダー
だから、例えば
header1 header2 header3
header1 1 1 1
header2 2 2 2
header3 3 3 3
どのように水平と垂直の両方のヘッダーを持つテーブルを取得できますか?テーブル内の縦型ヘッダーと横型ヘッダー
だから、例えば
header1 header2 header3
header1 1 1 1
header2 2 2 2
header3 3 3 3
簡単。ただ、最初のtr
の最初のtd
を残す - 空
をあなたが最初の列にまだちょうど<th>
エントリーすることができますが、私の知る<thead>
/<tbody>
のない列に相当はありません。
@UlrichSchwarzさんのように、<td>
の代わりに<th>
を最初の列に使用してください。スコープを使用して、あなたはそれがより意味的に記述することができます:それも可能
<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>
です??誰か、助けて!私はこれを終了する必要があります! –