|
here are some more details
here is how it looks the basic html of my site
<div id="wrapper">
<div id="inner">
<div id="main">
<div id="left">
</div>
<div id="right">
</div>
</div>
</div>
</div>
and main left and right have float left
#wrapper { width:100%; }
#inner { position:relative; width:1080px; }
#main { float:left; width:1080px;}
#left { float:left; width:363px; height:557px;}
#right { float:left; width:677px;}
1080 - 363 = 717 px and the right is even less like 677px so it should not jump to the left blow the left part
|