Table layout

by samih

HTML

<div class="parent">
    <div class="left">
        Left column
        <div class="content"></div>
    </div>
    <div class="right">
        Right column
        <div class="content"></div>
    </div>
</div>

CSS

.parent {
    display: table;
    width: 100%;
    margin-top: 100px;
}

.left, .right {
    display: table-cell;
    border: 1px solid black;
    text-align: center;
}

.left {
    width: 100px;
    background-color: lightblue;
}

.right {
    background-color: lightyellow;
}

.content {
    height: 200px;
    width: 100%;
}