3
I’d like to know how to ensure that two DIV
, both with float:right
, do not reverse the position of each other, for example:
<div id="divMaster">
<div class="pull-right" id="Div1">
</div>
<div class="pull-right" id="Div2">
</div>
</div>
Whereas the #Div1
continue to the left of #Div2
.
Obs:
pull-right
is a Twitter Bootstrap class, but it’s the same as the float:right;
.
You can always change the order of the div’s and it’s straight as you want it.
– Jorge B.