0

我试图通过取消循环从 4 列打破到 3 列,初始比率看起来像这样

col(1/4, gutter: .5, cycle: 4)

然后我尝试以笔记本电脑的分辨率将其更改为仅 3 列

uncycle()
col(1/3, gutter: .5, cycle: 3)

有没有办法像这样改变比率?

4

2 回答 2

0

根据他们的columnAPI,我认为你应该使用

col(1/3, gutter: .5, uncycle:4, cycle: 3)
于 2015-01-11T19:42:50.300 回答
0

You are close, the correct way to do this is:

@include col(1/3, $uncycle:4, $cycle:3);

So basically you first uncycle the number of previous cycles, and after that you enter the new number of cycles.

For more information, check the Jeet documentation. http://jeet.gs

于 2015-07-27T13:02:23.277 回答