Skip to content

Instantly share code, notes, and snippets.

@sinrise
Created September 27, 2014 22:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sinrise/0377e14f2557a164edc7 to your computer and use it in GitHub Desktop.
Save sinrise/0377e14f2557a164edc7 to your computer and use it in GitHub Desktop.
A Pen by sinrise.
<html>
<body>
<div id="wrapper">
<div id="content">
<h1>heading</h1>
<h2>body</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
</div>
</div>
<div id="footer">
<p>&copy; 2014 Some Dude</p>
</div>
</body>
</html>
* { margin: 0; padding: 0; }
html, body { height: 100%; }
#wrapper {
min-height: 100%;
margin: 0 auto -51px;
}
#wrapper:after {
content: "";
display: block;
}
#content { padding: 20px; }
#wrapper:after, #footer { height: 50px; }
#footer {
padding: 0 20px 0;
border-top: 1px solid #000;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment