Last active
August 29, 2015 14:10
-
-
Save fafaradesigns/0101f5352f801cd8233a to your computer and use it in GitHub Desktop.
HTML:Content Sample short
This file contains hidden or 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
<header class="page-row"> | |
<h1>Site Title</h1> | |
<style> | |
html, | |
body { height: 100%; } | |
body { | |
display: table; | |
width: 100%; | |
} | |
.page-row { | |
display: table-row; | |
height: 1px; | |
} | |
.page-row-expanded { height: 100%; } | |
</style> | |
</header> | |
<main class="page-row page-row-expanded"> | |
<p>Page content goes here.</p> | |
</main> | |
<footer class="page-row"> | |
<p>Copyright, blah blah blah.</p> | |
</footer> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment