I have a PHP code which generates a really big table which does not fit into the screen (this is OK). The problem is the <body>
tag does not want to fit the browser's document width, it only fits the width of screen. The <table>
content does not fit into body.
I have looked here, added wrapper div.
Well, wrapper div spans over the page's width correctly, but <body>
tag still does not cover the wrapper div.
I have also looked here:
Make <body> fill entire screen?
And defined such css:
html, body {
margin:0; padding:0;
min-width: 100%;
}
It did not help.