I am in need of a layout with three columns:
- left column (with a red background)
- center column (with a yellow background)
- right column (with a black background)
This is the HTML structure I have in mind:
<div id="container">
<div id="left_column">
<p>text</p>
</div>
<div id="center_column">
<p>loooooong text</p>
<p>other text</p>
</div>
<div id="right_column">
</div>
</div>
I want all columns to have flexible heights and be the same height
I attempted a demo which can be found here http://jsfiddle.net/4hj4f/8/, but the CSS is not working correctly as the columns end up with different heights.