I have seen several examples on how you can stack the coloumn order in bootstrap by using col-*-push-12, but can you do that to the divs with class container-fluid?
I have the following HTML:
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css" rel="stylesheet"/>
<div class="container-fluid mydiv1">
<div class="container">
<div class="row">
<div class="col-md-6 col-sm-12">
...
</div>
<div class="col-md-6 col-sm-12">
...
</div>
</div>
</div>
</div>
<div class="container-fluid mydiv2">
<div class="container">
<div class="row">
<div class="col-md-4">
...
</div>
<div class="col-md-8">
...
</div>
</div>
</div>
</div>
How do I use the push classes to reverse the stack order (move mydiv2 up and mydiv1 down) in small devices?