I decided to use foundation 6's new flex grid and I noticed that I am not getting the intended behaviour as I was getting with the block grid.
This is the HTML, it's the same code used in both instances:
<div class="row">
<div class="small-3 column end text-center red">
column 1
</div>
<div class="small-3 column end text-center green">
column 2
</div>
<div class="small-3 column end text-center green">
column 3
</div>
<div class="small-3 column end text-center green">
column 4
</div>
<div class="small-3 column end text-center green">
column 5
</div>
<div class="small-3 column end text-center green">
column 6
</div>
<div class="small-3 column end text-center green">
column 7
</div>
<div class="small-3 column end text-center green">
column 8
</div>
<div class="small-3 column end text-center green">
column 9
</div>
<div class="small-3 column end text-center green">
column 10
</div>
<div class="small-3 column end text-center green">
column 11
</div>
<div class="small-3 column end text-center green">
column 12
</div>
</div>
I tried using Flex Grid and Block Grid
I intend to get the result of the Block Grid link in a Flex Grid, is it possible?
I went through the F6 documentation but could not find an appropriate solution in there (at least from what I found).
Thank you!