This is a bit of a conundrum. I have a templating system where I want to have a two column layout with a fixed width left column and a fluid right column.
However, within the template, sometimes the left column won't show and I don't want the layout to break and still have the right column to extend all the way across.
Example 1:
<div id="left_column">
300px fixed width
</div>
<div id="right_column">
Remaining width
</div>
Example 2:
<div id="right_column">
Remaining 100% width
</div>