Recommend that users use th elements in table headers
https://html.spec.whatwg.org/multipage/tables.html#the-th-element
This commit is contained in:
parent
3c6626ae9e
commit
50c0793029
1 changed files with 6 additions and 6 deletions
|
@ -344,9 +344,9 @@ line breaks
|
|||
<table>
|
||||
<thead>
|
||||
<tr>
|
||||
<td>Col 1</td>
|
||||
<td>Col 2</td>
|
||||
<td>Col 3</td>
|
||||
<th>Col 1</th>
|
||||
<th>Col 2</th>
|
||||
<th>Col 3</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
|
@ -367,9 +367,9 @@ line breaks
|
|||
<table>
|
||||
<thead>
|
||||
<tr>
|
||||
<td>Col 1</td>
|
||||
<td>Col 2</td>
|
||||
<td>Col 3</td>
|
||||
<th>Col 1</th>
|
||||
<th>Col 2</th>
|
||||
<th>Col 3</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue