How do I make column width stop adjust to table width because following code will stretch columns past 50px when rendered:
<style>
table {
width:2000px;
}
td {
width:50px;
}
</style>
<table border="1">
<tr>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
</table>
then second question is opposite if I have no width set for table and have each column set to 200px how I make it build big table that's larger than screen. When I render below code table width adjusted to page width (100%) and each column has equal width within table not 200px
<style>
td {
width:200px;
}
</style>
<table border="1">
<tr>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
</table>