View Full Version : Resolved CSS Placement - Please Help
me_myself
11-14-2008, 04:55 PM
I am trying to have three div's inside a div container - two div's on left one below the other and the third div on right. My problem is the third div aligns to the right of the second div - i am not able to bring it up. Please help.
http://www.lollygarden.com/images/div_placement.jpg
Thanks
jscheuer1
11-14-2008, 05:00 PM
You could add another division, one to contain #'s 1 & 2.
me_myself
11-14-2008, 05:06 PM
Thanks jscheuer1, tried that it works in ie but firefox still shows div 3 close to div 2 :confused:
can you please post a sample css
Thanks
Snookerman
11-14-2008, 05:13 PM
Try floating it left:
<div>
<div id="leftdiv">
<div>Div 1</div>
<div>Div 2</div>
</div>
<div>Div 3</div>
</div>
#leftdiv {
float:left;
}
me_myself
11-14-2008, 05:20 PM
:D That was real dumb of me !!! Thanks so much for the help :)
Snookerman
11-17-2008, 09:17 PM
You're welcome! Make sure you edit your first post and ad the Resolved prefix to the thread.
Powered by vBulletin® Version 4.2.2 Copyright © 2021 vBulletin Solutions, Inc. All rights reserved.