'tbody' Example : tbody « HTML Tag Reference « HTML CSS Reference






'tbody' Example

    
<html>
<head>
<title>tbody element example</title>
</head>
<body>
<table width="500" border="8" cellspacing="5" cellpadding="5" align="center">
<thead style="color:blue" align="center">
   <td>This cell is in the thead rows group.</td>
   <td>This cell is in the thead rows group.</td>
   <td>This cell is in the thead rows group.</td>
</thead>
   <tbody>
      <tr>
         <td>This cell is in the tbody rows group.</td>
         <td>This cell is in the tbody rows group.</td>
         <td>This cell is in the tbody rows group.</td>
      </tr>
   </tbody>
   <tfoot style="color:red" align="right">
      <td>This cell is in the tfoot rows group.</td>
      <td>This cell is in the tfoot rows group.</td>
      <td>This cell is in the tfoot rows group.</td>
   </tfoot>
</table>
</body>
</html>
    
      
      








Related examples in the same category

1.'tbody' Syntax and Note
2.'tbody' HTML Attributes
3.'tbody' Event Handlers
4.'tbody' CSS Attributes and JavaScript Style Properties
5.'tbody' Microsoft Behaviors
6.'tbody' JavaScript Properties
7.'tbody' JavaScript Methods
8.'tbody' JavaScript Collections
9.'tbody' JavaScript Objects