How to sit two divs side by side horizontal开发者_如何学JAVAly using css, where the direction of the container DIV is from right to left ?
<div style="float:right;">
Right div
</div>
<div>
Left div
</div>
<div style="width:960px;overflow:hidden;">
<div style="float:right;width:600px;overflow:hidden;">
//right DIV
</div>
<div style="float:right;width:360px;overflow:hidden;">
//left DIV
</div>
</div>
精彩评论