<html xmlns=\"http://www.w3.org/1999/xhtml\"><head><meta http-equiv=\"Content-Type\" content=\"text/html; charset=windows-1250\"><title>grid 960 layout</title><link rel=\"stylesheet\" type=\"text/css\" media=\"all\" href=\"css/reset.css\" /><link rel=\"stylesheet\" type=\"text/css\" media=\"all\" href=\"css/960.css\" /><link rel=\"stylesheet\" type=\"text/css\" media=\"all\" href=\"css/text.css\" /><link rel=\"stylesheet\" type=\"text/css\" media=\"all\" href=\"css/style.css\" /></head><body> <div class=\"container_12 wrapper\"> <div class=\"grid_12 alpha omega header\"> <h1>Header</h1> </div> <div class=\"grid_12 alpha omega content\"> <p>Content</p> </div> <div class=\"push\"></div> </div> <div class=\"footer\"> <p>Copyright (c) 2008</p> </div> </body></html>
* { margin: 0; } html, body { height: 100%; } .wrapper { min-height: 100%; height: auto !important; height: 100%; margin: 0 auto -1em; } .footer, .push { clear:both; height: 1em; }
and style.css:
* {
margin: 0;
}
html, body {
height: 100%;
}
.wrapper {
min-height: 100%;
height: auto !important;
height: 100%;
margin: 0 auto -1em;
}
.footer, .push {
clear:both;
height: 1em;
}