A Pen by Jon Roobottom on CodePen.
Created
February 9, 2016 17:25
-
-
Save roobottom/e1b9d5679250a294c5f5 to your computer and use it in GitHub Desktop.
zrJmeL
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
<div class="flex_element header"> | |
<div class="wrapper"> | |
<div class="third_party_class">This is the main header,woot</div> | |
</div> | |
</div> | |
<div class="flex_element body"> | |
<div class="wrapper"> | |
<div class="third_party_class"> | |
<p>Keep Scrolling, this is fun!</p> | |
<p>Keep Scrolling, this is fun!</p> | |
<p>Keep Scrolling, this is fun!</p> | |
<p>Keep Scrolling, this is fun!</p> | |
<p>Keep Scrolling, this is fun!</p> | |
<p>Keep Scrolling, this is fun!</p> | |
<p>Keep Scrolling, this is fun!</p> | |
<p>Keep Scrolling, this is fun!</p> | |
<p>Keep Scrolling, this is fun!</p> | |
<p>Keep Scrolling, this is fun!</p> | |
<p>Keep Scrolling, this is fun!</p> | |
<p>Keep Scrolling, this is fun!</p> | |
<p>Keep Scrolling, this is fun!</p> | |
<p>Keep Scrolling, this is fun!</p> | |
<p>Keep Scrolling, this is fun!</p> | |
</div> | |
</div> | |
</div> | |
<div class="flex_element footer"> | |
<div class="wrapper"> | |
<div class="third_party_class">footer</div> | |
</div> | |
</div> |
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, body { | |
height: 100%; | |
} | |
body { | |
display: flex; | |
flex-direction: column; | |
margin:0; | |
} | |
.wrapper { | |
max-width: 800px; | |
margin: 0 auto; | |
} | |
.flex_element { | |
background: red; | |
} | |
.third_party_class { | |
padding:20px; | |
} | |
.body { | |
overflow-y:scroll; | |
background: blue; | |
color:white; | |
} | |
.footer { | |
margin-top:auto; | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment