Forum Moderators: not2easy
I need to achieve this:
¦-------- HEADER -------¦
¦---1 ----------¦---2---¦
¦---3 ------¦-------4---¦
¦-------- FOOTER -------¦
Header
1 (div) 2 (div)
3 (div) 4 (div)
Footer
I need 2 divs to stack on top of 2 other divs and I cannot use absolute positioning, also the site is fixed width.
Having a variety of issues, so i won't post my bad code.
Thanks in advance
Shawna
<div id="container">
<div id="header">header</div>
<div class="boxone">box 1</div>
<div class="boxtwo">box 2</div>
<div class="boxthree">box 3</div>
<div class="boxfour">box 4</div>
<div id="footer">footer</div>