Skip to content Skip to sidebar Skip to footer

Setting 100% Height To Columns In Twitter Bootstrap

I am new to BootStrap so learning the ropes and understanding it. I am trying to acheive 100% height in column grid so that it covers 100% height of the page. Right now no height i

Solution 1:

try this:

html,body
{
  height: 100%;
}

If that doesn't work, then use inspect element, and verify that parent elements have 100% height. (Because if they don't - then child elements won't get 100% height unless they are position:absolute or position:fixed

Post a Comment for "Setting 100% Height To Columns In Twitter Bootstrap"