Last active
December 29, 2015 10:29
-
-
Save haric/7657504 to your computer and use it in GitHub Desktop.
Stretch container to fit page
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
| /* Set container height to 100% */ | |
| body, html { | |
| height: 100%; | |
| } | |
| .container { | |
| height: 100% !important; | |
| } | |
| /* if all fail */ | |
| .mainbody{ | |
| position: absolute; | |
| top: 40px; /* Header Height */ | |
| bottom: 20px; /* Footer Height */ | |
| width: 100%; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment