Open In App

HTML | <table> width Attribute

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:

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:

Article Tags :