What I'm trying to achieve is this:
It seems like imposible. Tried a lot of possibilities. None of them worked. This is the one I think should work.
<div id="wrap">
<div id="content">hello</div>
</div>
html,body{
height:100%;
}
#wrap{
background-color:red;
width:100%;
height:100%;
}
#content{
background-color:cyan;
width:90%;
height:95%;
margin: 5% 5% 0 5%;
}