1
我有一個角度的應用程序,可以有2至5項之間的任何地方和20列susy網格ng重複。我想要的物品,以總電網的全寬,所以如果有2個我想:如何根據數組中的項目數來更改susy參數?
.card:nth-child(1) {
@include span(10 of 20); }
.card:nth-child(2) {
@include span(10 of 20 last); }
,如果我有5張卡我想:
.card:nth-child(n+1):nth-child(-n+4) {
@include span(4 of 20); }
.card:nth-child(5) {
@include span(4 of 20 last); }
而且我需要它的工作動態之間的任何事情。 任何想法我怎麼能得到這樣的工作?