HTML Table Width


HTML tables can have different sizes for each column, row or the entire table.

Use the style attribute with the width or height properties to specify the size of a table, row or column.


HTML Table Width

To set the width of a table, add the style attribute to the <table> element:


Live Demo & Try it yourself! Read More » »

HTML Table Column Width


To set the size of a specific column, add the style attribute on a <th> or <td> element:


Live Demo & Try it yourself! Read More » »

HTML Table Row Height


To set the height of a specific row, add the style attribute on a table row element:


Live Demo & Try it yourself! Read More » »