I would like to know how to ensure that two DIV
, both with float:right
, do not reverse the position, for example:
<div id="divMaster">
<div class="pull-right" id="Div1">
</div>
<div class="pull-right" id="Div2">
</div>
</div>
Since #Div1
continues to the left of #Div2
.
Obs:
pull-right
is a Twitter Bootstrap class, but it is the same as float:right;
.