I am maaking a responsive app for all devices(sizes), I used the formula, target / context = result. For width i given 93.75% (900/960), when i used the same formula for height - 62.5% its not visible, If i used 600px for height that maincontent div is visible, how to fix this ?
Below is my code i tried,
<div class="maincontent"></div>
.maincontent{
width:93.75%;/*900/960*/
margin:5% 3.125%; /*30/960*/
height:62.5%;/*600*/
background:#2c3e50;
}