HTML/CSS/Table Tags/tbody

Материал из Web эксперт
Перейти к: навигация, поиск

"tbody" Example

   <source lang="html4strict">
   

<html> <head> <title>tbody element example</title> </head> <body>

<thead style="color:blue" align="center">
   </thead>
   <tbody>
</tbody> <tfoot style="color:red" align="right">
   </tfoot>
This cell is in the thead rows group. This cell is in the thead rows group. This cell is in the thead rows group.
This cell is in the tbody rows group. This cell is in the tbody rows group. This cell is in the tbody rows group.
This cell is in the tbody rows group. This cell is in the tbody rows group. This cell is in the tbody rows group.
This cell is in the tfoot rows group. This cell is in the tfoot rows group. This cell is in the tfoot rows group.

</body> </html>


     </source>