我试图通过取消循环从 4 列打破到 3 列,初始比率看起来像这样
col(1/4, gutter: .5, cycle: 4)
然后我尝试以笔记本电脑的分辨率将其更改为仅 3 列
uncycle()
col(1/3, gutter: .5, cycle: 3)
有没有办法像这样改变比率?
根据他们的column
API,我认为你应该使用
col(1/3, gutter: .5, uncycle:4, cycle: 3)
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