Lymnplaydayvgx
New Member
I have the following CSS for some DIVs,\[code\]#wrapper { width:960px; border:1px solid red; overflow:hidden;}#maintitle { width:600px; height:50px; float:left; border:1px solid #333;}#sidebar { clear:both; float:left; width:100px; height:200px; border:1px solid #ccc;}#rightSidebar { width:100px; height:200px; float:right; border:1px solid #CCC;}\[/code\]I would think the #rightSidebar div would float to the very top right corner of the #wrapper div, however, it's staying below the #maintitle DIV.The #maintitle DIV is floating to the left, would it then allow the #rightsidebar div to float to the very top right corner?Here it is in action, http://jsfiddle.net/BdpU7/.