Reputation: 2774
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
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