So I've got this problem with a fixed header and trying to make a table stretch to 100% of the page. Sounds straightforward, right? But for some reason, the table is expanding beyond the body's boundaries. Below is a snippet of the code I'm working with. I do have a sample website that demonstrates the issue, but access requires signing up and registering. Should you still want the link, just let me know.
<body style="max-width: 100%">
<div style="top: 0; left: 0; right: 0; width: 100%; position: fixed">Sample Header</div>
<table style="width: 100%">
<tr>
<td>
Sample table.
</td>
</tr>
</table>
</body>