Three divs stacking similar to grid style

CraZyBoY

New Member
Let's just say I have three divs: DIV1, DIV2, DIV3 is this particular order.I would like to stack them like that:\[code\] (BIG|DIV1 DIV2)|DIV3\[/code\]I have tried with positioning and floats, unfortunately DIVs just overlaped, hide or stacked one under the another.Any help or advice would be great.UPDATEDMy current code:\[code\].div1{ position: absolute; margin-left: 125px; width: 500px;}.div2{ position: relative; }.div3{ clear: both;}\[/code\]And the result:\[code\] (BIG|DIV1DIV2)| DIV3\[/code\]
 
Back
Top