I am building an asp.net mvc web application and I am using bootstrap 3.0. now I have the following row, which contain 2 divs; BlockA & BlockB with (4 to 8 occupation):-
<div class="container">
<div class="row">
<div class="col-lg-4 col-md-4 col-sm-4 address">
//Block A
</div>
<div class="col-lg-8 col-md-8 col-sm-8 ">
//Block B
</div>
</div>
</div>
now currently on small sized screens the two blocks will be aligned vertically so BlockA will be above BlockB.. so my question is how i can change this behaviour and have BlockB above BlockA when they get aligned vertically , and keep the order as is when they are aligned horizontally ?
Thanks