Khrys
Khrys

Reputation: 2774

Bootstrap's 3.x Panel with 100% height

Is it possible to css a panel to have 100% height? I tried

html,body{ height:100%}

and than put height: 100% in the panel, without luck.

Upvotes: 14

Views: 39332

Answers (3)

ospider
ospider

Reputation: 10391

just use height: 100vh; if your browser supports CSS3

Upvotes: 6

arnistrong
arnistrong

Reputation: 151

Every parent elements must have height: 100%

Upvotes: 11

Able
Able

Reputation: 3912

panel height depends on the content in the panel body, otherwise you have to set the panel body height manually.

 <div class="panel-body" style="height:900px">

Upvotes: 11

Related Questions