yanknudtskov
1/4/2014 - 1:30 PM

Automatically adjust div's width using CSS

Automatically adjust div's width using CSS

.wrapper {
    border: 1px solid black;
    width: 400px;
    display:table;
}
.left {
    border: 1px solid green;
    display: table-cell;
    width: 100%;
}
.right {
    border: 1px solid red;
    display: table-cell;
}