Skip to content

Instantly share code, notes, and snippets.

@victorwpbastos
Last active November 9, 2015 19:14
Show Gist options
  • Save victorwpbastos/aeaa3da9865bec05ac38 to your computer and use it in GitHub Desktop.
Save victorwpbastos/aeaa3da9865bec05ac38 to your computer and use it in GitHub Desktop.
Layout 3 Rows
html, body {
padding: 0;
margin: 0;
height: 100%;
}
.wrapper {
display: table;
width: 100%;
height: 100%;
}
.header, .main, .footer {
display: table-row;
}
.header, .footer {
height: 40px;
background: salmon;
}
.main {
background: lightyellow;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment