HTML <th> with valign Attribute
You are Here:
HTML <th> with valign Attribute
The valign
attribute specifies the vertical alignment of the content in the <th> element.
Warning: The valign
attribute is deprecated and is no longer recommended.
Tips: To vertical align a header cell, try any of the following methods:
- Using style global attribute: <th style="vertical-align: middle">.
- Using CSS vertical-align property.
Example
HTML Online Editor
<!DOCTYPE html>
<html>
<body>
<table>
<thead>
<tr style="height:50px;">
<th valign="top">Students</th>
<th>Mark</th>
</tr>
</thead>
<tbody>
<tr>
<td>Brendon</td>
<td>28.25</td>
</tr>
<tr>
<td>Eich</td>
<td>30.75</td>
</tr>
</tbody>
<tfoot>
<tr>
<td>John</td>
<td>45.50</td>
</tr>
</tfoot>
</table>
</body>
</html>
Attribute Values
Name | Explanation |
---|---|
baseline | Align the content of <th> to the baseline of the cell. |
bottom | Align the content of <th> to the bottom of the cell. |
middle | Align the content of <th> to the middle of the cell. |
top | Align the content of <th> to the top of the 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.