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
040fd99997
1 changed files with 6 additions and 6 deletions
|
@ -344,9 +344,9 @@ line breaks
|
||||||
<table>
|
<table>
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<td>Col 1</td>
|
<th>Col 1</th>
|
||||||
<td>Col 2</td>
|
<th>Col 2</th>
|
||||||
<td>Col 3</td>
|
<th>Col 3</th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
|
@ -367,9 +367,9 @@ line breaks
|
||||||
<table>
|
<table>
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<td>Col 1</td>
|
<th>Col 1</th>
|
||||||
<td>Col 2</td>
|
<th>Col 2</th>
|
||||||
<td>Col 3</td>
|
<th>Col 3</th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue