Before I explain, consider the following...
EXAMPLE HTML CODE:
<div id="Body">
<div id="Content">...</div>
<div id="Panel">...</div
</div>
CSS CODE:
#Body {
min-width: 865px;
width: 93%;
max-width: 1785px;
}
#Panel {
width: 250px;
float: right;
}
#Content {
float: left;
min-width: 595px;
width: /* This one needs to be fluid. So, what should I do? */;
max-width: 1510px;
}
As you can see, 'Body' div is the fluid-width parent I was referring to, with fixed-width child element 'Panel' div and fluid-width 'Content' div — and that's exactly where I am stuck.
How should I define the width of 'Content' div? Any ideas are welcome. Thanks.