Skip to content

Instantly share code, notes, and snippets.

@gdotdesign
Created February 17, 2012 09:39
Show Gist options
  • Select an option

  • Save gdotdesign/1852190 to your computer and use it in GitHub Desktop.

Select an option

Save gdotdesign/1852190 to your computer and use it in GitHub Desktop.
The first commented line is your dabblet’s title
/**
* The first commented line is your dabblet’s title
*/
.wrapper {
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
}
.header {
position: absolute;
top: 0;
left: 0;
right: 0;
height: 50px;
background-color: red;
}
.footer {
position: absolute;
bottom: 0;
left: 0;
right: 0;
height: 50px;
background-color: blue;
}
.content {
position: absolute;
bottom: 50px;
left: 0;
right: 0;
top: 50px
background-color: gray;
}
<div class="wrapper">
<div class="header"></div>
<div class="content"></div>
<div class="footer"></div>
</div>
{"view":"separate","prefixfree":"1","page":"result"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment