помогите прикрепить к этому шаблону подвал с фиксированной шириной, прилепленный к низу экрана?((( никак не выходит... Ниже то, что я наваял. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <title>An XHTML 1.0 Strict standard template</title> <meta http-equiv="content-type" content="text/html;charset=utf-8" /> <meta http-equiv="Content-Style-Type" content="text/css" /> <style type="text/css"> * { margin: 0; padding: 0; font: 12px Tahoma, Arial, sans-serif; } html, body { height: 100%; } .header { max-width: 1000px; min-width: 1000px; height: 100px; margin: 0 auto; text-align: center; border: red 1px dotted; } .parent { max-width: 1000px; min-width: 1000px; height: 70%; margin: 0 auto; text-align: center; border: red 1px dotted; } .footer { max-width: 1000px; min-width: 1000px; height: 100px; text-align: center; margin-left: auto; margin-right: auto; border: red 1px dotted; } .child, .helper { display: -moz-inline-block; display: inline-block; vertical-align: middle; } .child { width: 50%; } .helper { width: 0; height: 100%; } </style> <!--[if lte IE 7]> <style type="text/css"> .child, .helper { zoom: 1; display: inline; } </style> <![endif]--> </head> <body> <div class="header"> header </div> <div class="parent"> <div class="child"> Я длинный предлинный текст, который обязательно перенесется на другую строку если ты, уважаемый юзер, соизволишь уменьшить размер окна. Но я все равно останусь по середине! </div> <div class="helper"></div> </div> <div class="footer"> footer </div> </body> </html>