I've got two columns, one with a flexible width, and one that should expand to the remaining width. I have this set up like this:
.container {
height: auto;
overflow: hidden;
}
.right {
width: 80px;
float: right;
background: #aafed6;
position:relative; /* Needed for positioning an element absolutely inside this dib */
}
.left {
float: none; /* not needed, just for clarification */
background: #e8f6fe;
/* the next props are meant to keep this block independent from the other floated one */
width: auto;
overflow: hidden;
}
Here's the fiddle: http://jsfiddle.net/dms53yt8/
My problem is, I want the right div to have equal height as the left div. How can I do this while still preserving the current structure?
Thanks! Uri