我决定使用foundation 6 的新弹性网格,我注意到我没有像使用块网格那样得到预期的行为。
这是 HTML,在两个实例中使用的代码相同:
<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>
我尝试使用Flex Grid和Block Grid
我打算在 Flex Grid 中获得 Block Grid 链接的结果,这可能吗?
我浏览了 F6 文档,但在其中找不到合适的解决方案(至少从我发现的内容来看)。
谢谢!