Two divs, one fixed width, the other, the rest
Posted
by
Shamil
on Pro Webmasters
See other posts from Pro Webmasters
or by Shamil
Published on 2011-06-26T22:16:57Z
Indexed on
2011/06/27
0:31 UTC
Read the original article
Hit count: 219
css
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: middle;
min-height: 50px;
margin-right: 10px;
overflow: auto
}
.right {
float: right;
width: 16%;
text-align: right;
display: table-cell;
vertical-align: middle;
min-height: 50px;
height: 100%;
overflow: auto
}
Thanks
© Pro Webmasters or respective owner