Open In App

HTML | <th> height Attribute

Improve
Improve
Like Article
Like
Save
Share
Report

The HTML <th> height Attribute is used to specify the height of the table header cell. If the <th> height attribute is not set then it takes default height according to content. It is not supported by HTML 5.

Syntax:

<th height="pixels | %">

Attribute Values:

  • pixels: It sets the height of table header cell in terms of pixels.
  • %: It sets the height of table header cell in terms of percentage (%).

Example:




<!DOCTYPE html>
<html>
  
<head>
    <title>
        HTML th height Attribute
    </title>
</head>
  
<body>
    <h1>GeeksforGeeks</h1>
  
    <h2>HTML th height Attribute</h2>
  
    <table border="1" width="500">
        <tr>
            <th height="50">NAME</th>
            <th height="50">AGE</th>
            <th height="50">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> height attribute are listed below:

  • Google Chrome
  • Internet Explorer
  • Firefox
  • Safari
  • Opera


Last Updated : 26 Jun, 2019
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads