0

I have tried configuring css to fit panel-body to full screen, but no matter what I do it does not fit to full screen.

Please find the JSFiddle Link here.

Even tried to put class level css :

#apexBody {
width: 100%;
height: 100%;
}

The footer here is fixed and I want the panel or the text area to fit the full screen till the footer.

Nagendra Singh
  • 577
  • 1
  • 7
  • 24
  • https://www.google.com/search?q=div+height+100%25+not+full+100%25+browser+site:stackoverflow.com – dippas May 19 '18 at 04:12

2 Answers2

0

Try this.

.panel-body {
   background-color: white;
   border-radius: 0px;
   box-shadow: 0 1px 1px #ccc;
   width: 800px;
   height: 800px;

}
Nauman Moazzam
  • 158
  • 5
  • 17
0

Set to parent element and to its child.

.panel {
    height: 100vh;
}
. panel-body {
    height: 100%;
}
IP_
  • 676
  • 5
  • 18