HTMLheight AttributeThe HTML <td> height Attribute is used to specify the height of the table cell. If the <td> height attribute is not set then it takes default height according to content.
Syntax:
<td height="pixels | %">
Attribute Values:
- pixels: It sets the height of the table cell in terms of pixels.
- %: It sets the height of the table cell in terms of percentage (%).
Note: The <td> height Attribute is not supported by HTML 5.
Example: This example describes the HTML <td> height Attribute in order to add the height of the table cell.
HTML
<!DOCTYPE html>
<
html
>
<
head
>
<
title
>
HTML td height Attribute
</
title
>
</
head
>
<
body
>
<
h1
>GeeksforGeeks</
h1
>
<
h2
>HTML td height Attribute</
h2
>
<
table
border
=
"1"
width
=
"500"
>
<
tr
>
<
th
>NAME</
th
>
<
th
>AGE</
th
>
<
th
>BRANCH</
th
>
</
tr
>
<
tr
>
<
td
height
=
"50"
>BITTU</
td
>
<
td
height
=
"50"
>22</
td
>
<
td
height
=
"50"
>CSE</
td
>
</
tr
>
<
tr
>
<
td
height
=
"100"
>RAKESH</
td
>
<
td
height
=
"100"
>25</
td
>
<
td
height
=
"100"
>EC</
td
>
</
tr
>
</
table
>
</
body
>
</
html
>
Output:

HTML <td> height Attribute
Supported Browsers: The browser supported by HTML <td> height Attribute are listed below:
- Google Chrome
- Internet Explorer
- Microsoft Edge
- Firefox
- Safari
- Opera
Improve your Coding Skills with Practice
Start Your Coding Journey Now!
The HTML <td> height Attribute is used to specify the height of the table cell. If the <td> height attribute is not set then it takes default height according to content.
Syntax:
<td height="pixels | %">
Attribute Values:
- pixels: It sets the height of the table cell in terms of pixels.
- %: It sets the height of the table cell in terms of percentage (%).
Note: The <td> height Attribute is not supported by HTML 5.
Example: This example describes the HTML <td> height Attribute in order to add the height of the table cell.
HTML
<!DOCTYPE html> < html > < head > < title > HTML td height Attribute </ title > </ head > < body > < h1 >GeeksforGeeks</ h1 > < h2 >HTML td height Attribute</ h2 > < table border = "1" width = "500" > < tr > < th >NAME</ th > < th >AGE</ th > < th >BRANCH</ th > </ tr > < tr > < td height = "50" >BITTU</ td > < td height = "50" >22</ td > < td height = "50" >CSE</ td > </ tr > < tr > < td height = "100" >RAKESH</ td > < td height = "100" >25</ td > < td height = "100" >EC</ td > </ tr > </ table > </ body > </ html > |
Output:

HTML <td> height Attribute
Supported Browsers: The browser supported by HTML <td> height Attribute are listed below:
- Google Chrome
- Internet Explorer
- Microsoft Edge
- Firefox
- Safari
- Opera
Please Login to comment...