I'm using Bootstrap 3.3.5. In "Medium devices" is all perfect, the structure is: A B C. But when I want show it on Small devices the structure is:
A
C
B
I want:
A
B
C
My code is:
<div class="container">
<div class="row">
<div class="col-md-4 col-sm-12">A</div>
<div class="col-md-4 col-sm-12 col-md-push-4">C</div>
<div class="col-md-4 col-sm-12 col-md-pull-4">B</div>
</div>
</div>
I can't move divs. I can move only by bootstrap styles.
Can you help me please? Thank you so much..