HTML Tables Size
HTML tables can have different sizes for each column, row or the entire table.
Example of table Sizes
HTML tables can have different sizes for each column, row or the entire table.
<table>
<tr>
<th>Company</th>
<th width="60%">Contact</th>
<th>Country</th>
</tr>
<tr>
<th>Alfreds Futterkiste</th>
<th>Maria Anders</th>
<th>Germany</th>
</tr>
<tr>
<th>Centro comercial Moctezuma</th>
<th>Francisco Chang</th>
<th>Denver</th>
</tr>
</table>
<table>
<tr>
<th>Company</th>
<th width="60%">Contact</th>
<th>Country</th>
</tr>
<tr Height="80%">
<th>Alfreds Futterkiste</th>
<th>Maria Anders</th>
<th>Germany</th>
</tr>
<tr>
<th>Centro comercial Moctezuma</th>
<th>Francisco Chang</th>
<th>Denver</th>
</tr>
</table>
In this page (written and validated by A. Gawali) you learned about HTML Table Size . What's Next? If you are interested in completing HTML tutorial, your next topic will be learning about: HTML Table Header.
Share On: |