I'm using the http://flexboxgrid.com framework.
I want the columns to be horizontal on desktop but stack on mobile and responsively.
Example (Desktop):
Example (Mobile):
<div class="row">
<div class="col-xs">
<div class="box">1</div>
</div>
<div class="col-xs">
<div class="box">2</div>
</div>
<div class="col-xs">
<div class="box">3</div>
</div><div class="col-xs">
<div class="box">4</div>
</div>
</div>
Here's a JSFiddle that demonstrates what I am saying.
https://jsfiddle.net/RohitTigga/mfv622rt/
How exactly does one stack divs for each column inside the row on a smaller screen or mobile?
Is that not possible with the framework?