Full Height - Web Responsiveness - Twitter Bootstrap

Does anyone know how to set the Bootstrap div on Twitter always at full height (100% of the screen height) in all resolutions?

I will really appreciate any help.

+4
source share
1 answer

Basically, any parent DIV containers should also be 100% - this includes BODY, HTML, etc. You can add CSS after "bootstrap.css" to override Bootstrap CSS as follows:

html,body{height:100%;} .container { height:100%; } .fill{ width:100%; height:100%; min-height:100%; background-color:#990000; padding:10px; color:#efefef; } 

http://jsfiddle.net/skelly/zrBGw/

+10
source

All Articles