HTML <tfoot> with valign Attribute
You are Here:
HTML <tfoot> with valign Attribute
The valign
attribute specifies the vertical alignment of the <tfoot>
content.
Warning: The valign
attribute is deprecated and is no longer recommended.
Tips: To vertical align a table footer, try any of the following methods:
- Using style global attribute: <tfoot style="vertical-align: middle">.
- Using CSS vertical-align property.
Example
HTML Online Editor
<!DOCTYPE html>
<html>
<body>
<table>
<thead>
<tr>
<th>Students</th>
<th>Count</th>
</tr>
</thead>
<tbody>
<tr>
<td>Male</td>
<td>28</td>
</tr>
<tr>
<td>Female</td>
<td>30</td>
</tr>
</tbody>
<tfoot valign="bottom">
<tr style="height:50px;">
<td>Total</td>
<td>58</td>
</tr>
</tfoot>
</table>
</body>
</html>
Attribute Values
Name | Explanation |
---|---|
baseline | Align the content of <tfoot> to the baseline of its cell. |
bottom | Align the content of <tfoot> to the bottom of its cell. |
middle | Align the content of <tfoot> to the middle of its cell. |
top | Align the content of <tfoot> to the top of its cell. |
Reminder
Hi Developers, we almost covered 99.5% of HTML Tutorials with examples for quick and easy learning.
We are working to cover every Single Concept in HTML.
Please do google search for:
Join Our Channel
Join our telegram channel to get an instant update on depreciation and new features on HTML, CSS, JavaScript, jQuery, Node.js, PHP and Python.
This channel is primarily useful for Full Stack Web Developer.