HTML <col> with valign Attribute
HTML <col> with valign Attribute
The valign
attribute specifies the vertical alignment of the content related to a <col> element.
Warning: The valign
attribute is deprecated and is no longer recommended.
Example
HTML Online Editor
<!DOCTYPE html>
<html>
<body>
<table>
<colgroup>
<col valign="top">
<col valign="middle">
<col valign="bottom">
</colgroup>
<tr>
<th>Roll No</th>
<th>Name</th>
<th>Mark</th>
</tr>
<tr>
<td>1</td>
<td>Brendan</td>
<td>90</td>
</tr>
<tr>
<td>2</td>
<td>Eich</td>
<td>92</td>
</tr>
</table>
</body>
</html>
Attribute Values
Name | Explanation |
---|---|
baseline | Much like bottom, the only difference is the bottom of the text will sit(baseline) in the line instead of sink(bottom). |
bottom | Put the content at the bottom of the cell. |
middle | Put the content at the middle of the cell. |
top | Put the content at 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.