I am interested in creating a traditional 3-column layout similar to this:
| | | |
|L | M |R |
| | | |
I have been tasked with using the following html structure:
as depicted, the Main
div is the initial node of #container
<body>
<div id="container">
<div id="M">Main</div>
<div id="L">Left</div>
<div id="R">Right</div>
</div>
</body>
Is there a way to achieve this layout with and without the use of css3 new features?
UPDATE:
#L
and #R
have a set width of 200px. #container
shares the same width as the window (excluding body margin) and #M
's left border connects with the right border of #L
, while #M
's right border connects with the left border of #R
.