A Pen by Matt Morgan on CodePen.
Created
May 31, 2014 17:27
-
-
Save anonymous/6762b3c015f42fe7391e to your computer and use it in GitHub Desktop.
A Pen by Matt Morgan.
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
<div class="table"> | |
<div class="table-row">Header</div> | |
<div class="table-row table-row--expanded"> | |
<div class="table"> | |
<div class="table-cell"> | |
<div class="content">Content</div> | |
</div> | |
</div> | |
</div> | |
<div class="table-row">Footer</div> | |
</div> |
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
body, html { | |
margin:0; | |
padding:0; | |
height:100%; | |
} | |
.table { | |
display:table; | |
width:100%; | |
height:100%; | |
} | |
.table-row { | |
display: table-row; | |
height: 1px; | |
} | |
.table-row--expanded { | |
height: auto; | |
} | |
.table-cell { | |
display:table-cell; | |
} | |
.content { | |
height: 100%; | |
max-width: 500px; | |
margin: 0 auto; | |
background: #000; | |
color:#fff; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment