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