Try this code.
Link example here: FIDDLE
HTML code :
<html>
<body style="position:fixed; top:0px; left:0px;bottom:0px; right:0px; margin:0px;">
<div style='display : table; width : 100%; height : 100%'>
<div style='display : table-row; width : 100%; height : 70%;'>
<div style="height:70%; width:100%; border:solid; display : table-cell;">
blah
</div>
</div>
<div style='display : table-row; width : 100%; height : 30%;'>
<div style="height:30%; width:100%; border:solid; display : table-cell;">
hah
</div>
</div>
</div>
</body>
</html>
hope this code helps you, Also, if you have any clarifications, let me know ...
source
share