Hi - I would like to lay out an area like this:
---- ----
|A | |B |
| | | |
---- ----
---------
|C |
---------
where each of the three boxes is a <fieldset>
. Box A and B might be populated by different amounts of items, yet they should both be the same height (the height of the one that needs to be larger).
Box C should be 100% width and right below them.
What is the proper/esaiest HTML/CSS/JS to accomplish this?
EDIT: I forgot to add the possible wrinkle that inside the fieldsets is a "jEditable" such that the fieldset height might change dynamically, and the other fieldset would need to resize too.