Уважаемы специалисты! У меня есть шаблон "статичной" страницы, а мне просто необходимо сделать "резиновый" дизайн этой страницы - чтобы изменялся center. Если ставить 100% на .all и на .center, то все к чертям скатывается <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=windows-1251"> <title>Дивовый дизайн</title> <link rel="stylesheet" type="text/css" href="style.css"> </head> <style> .all { width:900px; margin:auto; text-align:center; } .header { border:1px solid #666666; margin: 0 0 5px 0; padding:5px 5px 5px 5px; } .center { width:480px; min-height:600px; border:1px solid #666666; margin:0 0 0 210px; position:inherit; float:left; } .left { min-height:600px; border:1px solid #666666; margin: 0 0 5px -692px; width:200px; float:left; } .right { min-height:600px; border:1px solid #666666; margin: 0 0 5px 0; width:200px; float:right; } .footer { border:1px solid #666666; clear:both; padding:5px 5px 5px 5px; }</style> <body> <div class="all"> <div class="header"> Header - верхний блок странички </div> <div class="center"> Center - центральный блок. Здесь выводится основной контент </div> <div class="left"> Left - левая колонки. Навигация </div> <div class="right"> Right - правая колонка. Реклама </div> <div class="footer"> Footer - низ. Здесь обычно копирайт </div> </div> </body> </html>