Skip to content

Instantly share code, notes, and snippets.

@mlouro
Last active August 29, 2015 14:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mlouro/7ef2b5e5efaded9e8fae to your computer and use it in GitHub Desktop.
Save mlouro/7ef2b5e5efaded9e8fae to your computer and use it in GitHub Desktop.
flexible 3 column grid with 100% height
.app.large {
position: fixed;
top: 0;
bottom: 0;
right: 0;
left: 0;
.nav-main, .list-main, .content-main {
position: relative;
overflow: auto;
height: 100%;
float: left;
}
.nav-main {
width: 18%;
border-right: 1px solid #CCC;
}
.list-main {
width: 32%;
}
.content-main {
width: 50%;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment