body{
margin:0px;
padding:0px;
min-height:100%;
background-color: #FFCC00;
}
.container{
width:100%;
height:100%;
background-color:red;
}
.nav_wrapper{
width:18%;
height:100%;
background-color:cornflowerblue;
}
.resposive-page{
width:82%;
height:100%;
background-color:deeppink;
}
how do i make my container is 100% height and width same as body ? and 18% on nav_wrapper , 82% on reposive-page without using and px ? why my background-color wont show.