Reputation: 676
I have two Div
future
|--- futureBorderL
|
|--- futureBorderR
The futureBorderR Div is not up to the line, which is the right one.
Plz suggest.
Thanks!!!
Upvotes: 0
Views: 50
Reputation: 3972
if i understand you correctly, you are trying to have two divs side by side
<div style="float:left; width: 150px;">Left</div>
<div style="margin-left: 150px;">Right</div>
Upvotes: 0
Reputation: 40066
add float:left
for #futureBorderL
Demo: http://jsfiddle.net/KuX3G/2/
Upvotes: 1