Open In App
Related Articles

HTML | <th> width Attribute

Improve Article
Improve
Save Article
Save
Like Article
Like

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

Syntax:

<th width="pixels | %">

Attribute Values:

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

Example:




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

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

Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out - check it out now!

Last Updated : 26 Jun, 2019
Like Article
Save Article
Previous
Next
Similar Reads
Complete Tutorials