I want to create a div that span the whole real estate of my device exactly like Sample site
What I tried doing is to create an header with fixed height but could not create the div below the header to span the remaining height.
//Fixed Header
 .fixed-nav {
    position: fixed;
    width: 100%;
    height: 69px;
    background-color: #f2333a;
}
.x-div {
    position: relative;
    height: 100%;
    background-color: #F2333A;
    z-index: 10;
}
 
    