Hello :)
The html code source order should look like this:
<body>
<div>col2</div>
<div>col3</div>
<div>col1</div>
<div>col4</div>
</body>
and should look like this:
<----------------------100%----------------------->
+--------+-------------------+-----------+--------+
| col1 | col2 | col3 | col4 |
| | | | |
| (100% | (664px) | (312px) | (100% |
| -976px)| | | -976px)|
| /2 px | | | /2 px |
| | | | |
| | | | |
| | | | |
| | | | |
+--------+-------------------+-----------+--------+
- it should stretch to full width.
- col2 should have a fixed width of 664px,
- col3 should have a fixed wizth of 312px,
- col1 and col4 should have equal width and fill the entire screen width.
- this should be accomplished using css only.
- all major browsers should support it
i could pack col2/col3 into another div container and essentially deal with a 3 col layout. but i would really like to avoid this extra container if possible. possible somehow? greetings, joe