Hello,
Column B in the layout below appears wrong. I managed to make a 3 columns layout using http://www.dynamicdrive.com/style/layouts/item/css-liquid-layout-31-fixed-fluid-fixed/. However, this assumes that the fixed columns A and B have the same height/have the same vertical starting point. In my case B has another fluid div above.
I don't know how to make column B. Can anyone help?
Thank you!
Update:
I am trying to use display: table and display: table-cell but is not working on IE8. It works on Firefox.
<html>
<head>
</head>
<body>
<div style="display: table">
<div style="display: table-cell">
Column 1
</div>
<div style="display: table-cell">
Column 2
</div>
</div>
</body>
</html>
Even later edit:
In order to make the code above work on IE8 you need to add:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">