Open In App

HTML | <table> width Attribute

Improve
Improve
Like Article
Like
Save
Share
Report

The HTML <table> width Attribute is used to specify the width of a table. If width attribute is not set then it takes default width according to content.

Syntax:

<table width="pixels | %">

Attribute Values:

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

Note: The <table> width Attribute is not supported by HTML 5.

Example:




<!DOCTYPE html>
<html>
  
<head>
    <title>
        HTML table width Attribute
    </title>
</head>
  
<body>
    <h1>GeeksforGeeks</h1>
  
    <h2>HTML table width Attribute</h2>
  
    <table border="1" 
           width="250">
        <tr>
            <th>NAME</th>
            <th>AGE</th>
            <th>BRANCH</th>
        </tr>
        <tr>
            <td>BITTU</td>
            <td>22</td>
            <td>CSE</td>
        </tr>
    </table>
</body>
  
</html>


Output:

Supported Browsers: The browser supported by HTML <table> width Attribute are listed below:

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

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