HTML Table Sizes

Control the width and height of a table and its cells.

Set a width on the <table> for the whole table, or on a <th> or <td> to size a column.

Setting widths

<!DOCTYPE html>
<html>
<body>

<table style="width:100%;">
  <tr><th style="width:70%;">Name</th><th>Role</th></tr>
  <tr><td>Asha</td><td>Designer</td></tr>
</table>

</body>
</html>