A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://www.geeksforgeeks.org/html/html-th-valign-attribute/ below:

HTML | <th> valign Attribute

HTML | <th> valign Attribute

Last Updated : 22 Feb, 2022

The

HTML <th> valign Attribute

is used to

specify the vertical alignment of text content in a header cell

. It is not supported by HTML 5.

Syntax:
<th valign="top | middle | bottom | baseline">
Attribute Value: Example: HTML
<!DOCTYPE html>
<html>

<head>
    <title>
        HTML th valign Attribute
    </title>
</head>

<body>
    <h1>GeeksforGeeks</h1>

    <h2>HTML th valign Attribute</h2>

    <table border="1" width="500">
        <tr style="height:100px;">
            <th valign="top">NAME</th>
            <th valign="center">AGE</th>
            <th valign="bottom">BRANCH</th>
        </tr>

        <tr>
            <td>BITTU</td>
            <td>22</td>
            <td>CSE</td>
        </tr>

        <tr>
            <td>RAKESH</td>
            <td>25</td>
            <td>EC</td>
        </tr>
    </table>
</body>

</html>
Output: Supported Browsers:

The browser supported by

HTML <th> valign attribute

are listed below:



RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4