I have 4 divs with ids A, B, C and D as shown below:
<div id="A"></div>
<div id="content">
<div id="B"></div>
<div id="C"></div>
</div>
<div id="D"></div>
Div A and D have a fixed width and height. Div B has a fixed width. I want Div B height and Div C height + width to be calculated automatically. I want to stretch Div B and C between div A and D. Also I want to stretch Div c between div B and the right edge. This way, the page will not have any scrollbars and blank space.
My expected layout as below

How can I make this possible using jquery / css ?? Anyone have a solution, and pls give me a fiddle / demo?
Thanks in advance... :)
blasteralfred