Good day, I needed a two-column layout on the center of the page, I threw it up, it does not work in chrome, who knows why?
<style> /* ОСНОВНАЯ РАЗМЕТКА */ body { display: table; text-align:center; width: 100%; height: 100%; margin: 0px; padding: 0px; } #main { display: block; margin: 0px; padding: 0px; min-width: 800px; max-width: 1000px; *width: 800px; height: 100%; } #header { display: block; width: 100%; background-color: red; } #helper { display: block; width: 300px; height: 100%; background-color: #FCFBF8; float:left; } #text { display: block; width: 100%; height: 100%; background-color: blue; } #footer { display: block; width: 100%; background-color: grey; } /* ОКОНЧАНИЕ ОСНОВНОЙ РАЗМЕТКИ */ </style> <meta http-equiv="content-type" content="text/html; charset=utf-8"></head> <body> <div id="main"> <div id="header">header</div> <div id="helper">helper</div> <div id="text">text</div> <div id="footer">footer</div> </div><!-- id="main" --> </body>