I need to stack two tables on top of each other with content before and after. I can't get the content that comes after to flow properly. The stacked tables are variable height.
HTML structure:
... other content ...
<div id="ChartPanel">
<table id="chart">
<table id="underlay">
</div>
<div id="ExtraInfoPanel">
<table id="extraInfo">
</div>
CSS:
#ChartPanel { width: 100%; position: relative; }
#chart, #underlay { width: 1185px; position: absolute; top: 0; left: 0; }
#extraInfo { ??? }
The tables stack nicely, but I haven't figured out the CSS to get extraInfo to flow after the chart — it always ends up on top of the chart.