Two divs, one fixed width, the other, the rest
- by Shamil
I've got two div containers.
Whilst one needs to be a specific width, I need to adjust it, so that, the other div takes up the rest of the space. Is there any way I can do this?
<div class="left"></div>
<div class="right"></div> // needs to be 250px
.left {
float: left;
width: 83%;
display: table-cell;
vertical-align:…