tfoot
HTML tfoot Element
The HTML <tfoot> table footer element is used to designate the rows concluding or summarizing a table.
HTML CODE EXAMPLE
<table border="1">
<tr>
<td>Cell 1</td>
<td>Cell 2</td>
<td>Cell 3</td>
</tr>
<tr>
<td>Cell 4</td>
<td>Cell 5</td>
<td>Cell 6</td>
</tr>
<tfoot style="color:#FFF; background:#030; padding:24px;">
<tr>
<td colspan="3">And that is why science is cool</td>
</tr>
</tfoot>
</table>
<tr>
<td>Cell 1</td>
<td>Cell 2</td>
<td>Cell 3</td>
</tr>
<tr>
<td>Cell 4</td>
<td>Cell 5</td>
<td>Cell 6</td>
</tr>
<tfoot style="color:#FFF; background:#030; padding:24px;">
<tr>
<td colspan="3">And that is why science is cool</td>
</tr>
</tfoot>
</table>
Cell 1 | Cell 2 | Cell 3 |
Cell 4 | Cell 5 | Cell 6 |
And that is why science is cool |
0 Response to "tfoot"
Post a Comment