Fixed Left, Fluid Right

by Bijoy Anupam

HTML

<div class="wrapper">
    <div class="left">
        <div class="left-content">Left</div>
    </div>
    <div class="right">
        <div class="right-content">Center</div>
    </div>
</div>

CSS

.wrapper {
    width: 100%;
}
.left {
    float: left;
    background-color: blue;
}
.left-content {
    width: 150px;
}
.right {
    background-color: red;
    width: 100%;
}