Is there a way to expand the background color to fill the entire browser window?
.top{
background-color:green;
color: white;
height:1000px;
display: flex;
flex-direction: column;
}
<div className = "top">
<Header/>
<Body />
</div>
I attempted setting the height to 100%, but it did not work as expected. How can this be resolved?