I am trying to reorder the element in xs size
, using push
and pull
feature in bootstrap. It seems to be not working for me. Please help out.
<div class="row">
<div class="col-lg-7 col-md-7 col-sm-7 col-xs-12 col-xs-push-12">
A
</div>
<div class="col-lg-4 col-sm-4 col-md-4 col-xs-12 col-xs-pull-12">
B
</div>
</div>
Expected Result on all other resolution: WORKING
------------
| A | B |
------------
Expected Result in mobile devices: NOT WORKING
-------
| B |
-------
| A |
-------
But actually its coming with scrollbar and all. I am new to bootstrap framework, let me know where I went wrong.
Thanks