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






'tfoot' Example

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








Related examples in the same category

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