Sashi
Sashi

Reputation: 676

How to Adjust the second div

I have two Div

http://jsfiddle.net/KuX3G/

future

|--- futureBorderL
|
|--- futureBorderR

The futureBorderR Div is not up to the line, which is the right one.

Plz suggest.

Thanks!!!

Upvotes: 0

Views: 50

Answers (2)

Christian
Christian

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

Sotiris
Sotiris

Reputation: 40066

add float:left for #futureBorderL

Demo: http://jsfiddle.net/KuX3G/2/

Upvotes: 1

Related Questions