LDS GAME
by Neo Aptt
HTML
<div class="container">
<div class="row">
<div class="yellow no-float">Navigation</div>
<div class="blue no-float">Content</div>
</div>
</div>
CSS
html,body,.container
{
height:100%;
}
.container
{
display:table;
width: 100%;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.row
{
height: 100%;
display: table-row;
}
.no-float {
float: none; /* thanks baxabbit */
display: table-cell;
}
.blue
{
background: blue;
}
.yellow
{
background: yellow;
}