Created
September 19, 2013 09:22
-
-
Save willkan/6621075 to your computer and use it in GitHub Desktop.
pure css to realize 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
body,html{ | |
height:100%;} | |
#outerbox{ | |
width:100%; | |
position:absolute; /* to place it somewhere on the screen */ | |
top:130px; /* free space at top */ | |
bottom:0px;} /* makes it lock to the bottom */ | |
#innerbox{ | |
width:100%; | |
position:absolute; | |
min-height:100% !important; /* browser fill */ | |
height:auto;} /*content fill */ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment