Created
August 8, 2012 20:38
-
-
Save hansspiess/3298496 to your computer and use it in GitHub Desktop.
Frontend: Sticky Footer
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
* { | |
margin: 0; | |
padding: 0; | |
} | |
html, body, #wrap { | |
height: 100%; | |
} | |
body > #wrap { | |
height: auto; | |
min-height: 100%; | |
} | |
#main { | |
overflow: auto; | |
padding-bottom: 150px; | |
} | |
#footer { | |
position: relative; | |
margin-top: -150px; | |
height: 150px; | |
clear: both; | |
background-color: #909; | |
} | |
body:before { | |
content: ""; | |
height: 100%; | |
float: left; | |
width: 0; | |
margin-top: -32767px; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<title>Sticky Footer</title> | |
<!--[if IE 8]> | |
<style type="text/css"> | |
#wrap { display: table; } | |
</style> | |
<![endif]--> | |
</head> | |
<body> | |
<div id="wrap"> | |
<div id="main"> | |
Hello! | |
</div> | |
</div> | |
<div id="footer"> | |
Hello from below! | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment