I'm looking to create a div
with the class "panel" and a white background that extends to the bottom of the visible area without showing a scroll bar (only displaying the scroll bar when the content exceeds the viewport).
Here's an example I've been working on.
I attempted:
.panel{
height: 100%;
}
However, the scroll bar appears because it's set to 100% + the header. How can I fill the page without the scroll bar?