使用 susy2 确定行中的最后一个 child

determine last child in row using susy2

我正在使用 susy 创建一个响应式网格,我想知道我是否有一组像这样的列:

<div class="container">
  <div class="col-4">Col 1</div>
  <div class="col-4">Col 2</div>
  <div class="col-4">Col 3</div>
</div>

如何确定最后一个 child?

我还注意到,每当我进行此设置时,margin-right 都会导致它们对于容器而言太宽,并且会堆叠。

我尝试使用 last-flow: to,但它似乎也没有响应。

使用 the span mixin,您可以指定 firstlast,Susy 将删除相关的额外间距(这取决于您的 "gutter-position" 设置)。

它真正做的就是将 margin-leftmargin-right 设置为 0,所以当然有很多方法可以处理额外的间距,具体取决于您使用 Susy 的方式.没有看到您的 Sass 和 Susy 配置和使用情况,很难确切地说出您应该做什么。