Stick Footer Example – Footer pegado al bottom de la página
<html>
<body>
<div id=”nonFooter”>
<div id=”content”>
</div>
</div>
<div id=”footer”>
</div>
</body>
</html>
You then need to apply a bit of CSS:
html
{
height: 100%;
}
body
{
height: 100%;
}
#nonFooter
{
position: relative;
min-height: 100%;
}
* html #nonFooter
{
height: 100%;
}
#content
{
padding-bottom: 9em;
}
#footer
{
position: relative;
margin-top: -7.5em;
}
No comments yet.