order of the '<tfoot>' and '<tbody>' tags (#23029)

The order in the table of its child tags (thead , tbody and tfoot)
This commit is contained in:
carlos fernandez
2018-11-22 02:23:52 -05:00
committed by Manish Giri
parent f4e5f3cd1d
commit d2a49084ed

View File

@ -46,12 +46,6 @@ A more complex HTML table may also include `<caption>`, `<col>`, `<colgroup>`, `
<th>Amount</th>
</tr>
</thead>
<tfoot>
<tr>
<td>Apple</td>
<td>10</td>
</tr>
</tfoot>
<tbody>
<tr>
<td>Peach</td>
@ -62,6 +56,12 @@ A more complex HTML table may also include `<caption>`, `<col>`, `<colgroup>`, `
<td>3</td>
</tr>
</tbody>
<tfoot>
<tr>
<td>Apple</td>
<td>10</td>
</tr>
</tfoot>
</table>
</body>
</html>
@ -74,12 +74,6 @@ Result:
<th>Amount</th>
</tr>
</thead>
<tfoot>
<tr>
<td>Apple</td>
<td>10</td>
</tr>
</tfoot>
<tbody>
<tr>
<td>Peach</td>
@ -90,6 +84,12 @@ Result:
<td>3</td>
</tr>
</tbody>
<tfoot>
<tr>
<td>Apple</td>
<td>10</td>
</tr>
</tfoot>
</table>
## Adding/Removing table border