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:
ToaKraka 2024-01-07 15:20:05 -05:00 committed by GitHub
parent 3c6626ae9e
commit 50c0793029
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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>