Open In App

HTML | <tr> valign Attribute

The HTML <tr> valign Attribute is used to specify the vertical alignment of text content in a table row. It is not supported by HTML 5.

Syntax:



<tr valign= "top | middle | bottom | baseline">

Attribute Values:

Example:




<!DOCTYPE html>
<html>
  
<head>
    <title>
      HTML tr valign Attribute
  </title>
</head>
  
<body>
    <h1>GeeksforGeeks</h1>
  
    <h2>HTML tr valign Attribute</h2>
  
    <table style="height:200px" border="1">
        <tr valign="top">
            <th>Name</th>
            <th>Expenses</th>
        </tr>
  
        <tr valign="bottom">
            <td>BITTU</td>
            <td>2500.00</td>
        </tr>
  
        <tr valign="middle">
            <td>RAKESH</td>
            <td>1400.00</td>
        </tr>
    </table>
</body>
  
</html>

Output:



Supported Browsers: The browser supported by HTML <tr> valign attribute are listed below:


Article Tags :