I have two divs and they all are set to float right. Now I want the 'First div' to be displayed before 'Second Div' but without changing the html structure.
Html code--
<div class="one">
First Div
</div>
<div class="two">
Second Div
</div>
Demo -- https://jsfiddle.net/squidraj/31b9ndbs/
Not sure if this is possible at all. Any help is highly appreciated.