Left/Right Toolbar

by nathanziarek

HTML

<footer>
    <div class="left">
        <div class="thing">left
            <br/>left</div>
    </div>
    <div class="right">
        <div style="background:red; min-width: 200px">ggg</div>
    </div>
</footer>

CSS

footer {
    background: green;
    display: table;
    width: 100%;
}
.right, .left {
    display: table-cell;
    vertical-align: bottom
}
.left {
    background: blue;
    width: 99%
}
.right {
    background: yellow;
    width: 1%;
}