FREE Web Template Download
HTML CSS JAVASCRIPT SQL PHP BOOTSTRAP JQUERY ANGULARJS TUTORIALS REFERENCES EXAMPLES Blog
 

HTML <td> height Attribute

HTML td Reference HTML <td> tag

Example

Two table cells with a predefined height:

<table>
  <tr>
    <th>Month</th>
    <th>Savings</th>
  </tr>
  <tr>
    <td height="100">January</td>
    <td height="100">$100</td>
  </tr>
  <tr>
    <td>February</td>
    <td>$80</td>
  </tr>
</table>
Try it Yourself »

Definition and Usage

The height attribute specifies the height of a cell.

Normally, a cell takes up the space it needs to display the content. The height attribute is used to set a predefined height of a cell.


Browser Support

Attribute
height Yes Yes Yes Yes Yes

Compatibility Notes

The height attribute of <td> is not supported in HTML5. Use CSS instead.

CSS syntax: <td style="height:100px">

CSS Example: Set the height of a table cell

In our CSS tutorial you can find more details about the height property.


Syntax

<td height="pixels|%">

Attribute Values

Value Description
pixels Sets the height in pixels (example: height="50")
% Sets the height in percent of the surrounding element (example: height="50%")

HTML td Reference HTML <td> tag