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