Вот такой код у меня работает в IE и FF: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html> <head> <title>Test</title> <style type="text/css"> body, html { background-color:#808000; height:100%; margin:0px 0px 0px 0px; padding:0px 0px 0px 0px; } table#wrapper { width:100%; height:100%; background-color:#808000; border-collapse:collapse; } table#wrapper td.wrapperTd { width:100%; height:100%; margin:0px 0px 0px 0px; padding:0px 0px 0px 0px; } div#content { background-color:#00FFFF; width:90%; height:90%; margin:auto auto auto auto; } </style> </head> <body> <table id="wrapper"> <tr> <td class="wrapperTd"> <div id="content"> </div> </td> </tr> </table> </body> </html>