Skip to content

Instantly share code, notes, and snippets.

@notdol
Created January 14, 2014 14:09
Show Gist options
  • Save notdol/8418832 to your computer and use it in GitHub Desktop.
Save notdol/8418832 to your computer and use it in GitHub Desktop.
css: top-center-bottom
html,body,#wrapper {
height:100%;
padding:0;
margin:0;
}
#wrapper {
position:relative;
}
#top, #middle, #bottom {
position:absolute;
}
#top {
height:50px;
width:100%;
background:grey;
}
#middle {
top:50px;
bottom:50px;
width:100%;
background:black;
color:white;
overflow-y : auto;
}
#bottom {
bottom:0;
height:50px;
width:100%;
background:grey;
}
<div id="wrapper">
<div id="top"></div>
<div id="middle"></div>
<div id="bottom"></div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment