I\'m wondering what the best way to go about doing this is...
I have 3 div
s:
a div#container
with width=100%;
tha
I haven't really seen a good solution in the answers here. So I'll share mine.
Best way to do this is by using the table-cell
option in CSS. One important thing to add is a 'min-width' to the element that has a pixel width.
Example:
Left
right
CSS:
#left {
display: table-cell;
min-width: 160px;
}
#right {
display: table-cell;
width: 100%;
vertical-align: top;
}