<table border="1" width="100%" ID="Table2">
<tr>
<td>100</td>
</tr>
</table>
This code still leaves and "inch" of space on both sides of the table. Trying to get the table to span the entire width of the page. Thanks.
<table border="1" width="100%" ID="Table2">
<tr>
<td>100</td>
</tr>
</table>
This code still leaves and "inch" of space on both sides of the table. Trying to get the table to span the entire width of the page. Thanks.
you need to set the margin of the body to 0 for the table to stretch the full width. alternatively you can set the margin of the table to a negative number as well.
There might be a margin style that your table is inheriting. Try setting the margin of the table to 0:
<table border="1" width="100%" ID="Table2" style="margin: 0px;">
<tr>
<td>100</td>
</tr>
</table>
Try (in your <head> section, or existing css definitions)...
<style>
body {
margin:0;
padding:0;
}
</style>