Is it possible to override the width of the body element? For example, consider the following:
<body>
<table id="table1">
<tr><td></td></tr>
</table>
<table id="table2">
<tr><td></td></tr>
</table>
</body>
css:
body{width:970px;}
#table1{width:100%;}
#table2{width:100%;}
The goal is to set the first table to have a width of auto, allowing it to expand to the full browser width even though the body has a fixed width of 970px.
It is necessary for the body element to remain at 970px and the second table to expand to 100% width within that constraint. How can this be achieved?