width and height set the absolute width and height of the element, respectively. max-width , max-height , min-width and min-height are separate properties.
Example of a page with 1054px square content and full background:
html { min-width: 100%; min-height: 100%; background-image: url(http://www.example.com/somelargeimage.jpg); background-position: top center; background-color: #000; } body { width: 1054px; height: 1054px; background-color: #FFF; }
However, since you seem to be a table style (urgh), it would probably be much wiser to set the table height to 1054px and let the body automatically adjust itself to cover the whole table. (Keep the html style suggested above).
source share