Last active
August 29, 2015 14:06
-
-
Save mlouro/7ef2b5e5efaded9e8fae to your computer and use it in GitHub Desktop.
flexible 3 column grid with 100% height
This file contains hidden or 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
.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