Forum Moderators: not2easy
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Test</title>
<style type="text/css">
html, body
{
height:100%;
margin:0px;
}
div.table
{
-ms-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
display:table;
table-layout:fixed;
border-collapse:separate;
border:5px solid #666666;
width:100%;
height:100%;
}
div.cell
{
-ms-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
display:table-cell;
padding:10px;
border:10px solid #cccccc;
background-color:#0000ff;
width:100%;
height:100%;
}
div.inner
{
height:100%;
background-color:#ffff00;
}
</style>
</head>
<body>
<div class="table">
<div class="cell">
<div class="inner">Lorem ipsum...</div>
</div>
</div>
</body>
</html>