Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我最近升级到 Susy2,不得不用新的 susy-breakpoints 而不是 at-breakpoint 来修改我的基本模板。
使用新的 susy 断点,我需要为简写定义一个断点和布局,例如“60em, 12”,我尝试将其存储在一个变量中,例如“$large”,这样我就可以将它传递给各种类。
然而,由于它是一个变量,mixin 只将它视为一个值,所以我只能存储一个值。有没有办法将两个值都存储在一个变量中?
是的。Sass 的变量参数非常适合处理这种情况:
@include susy-breakpoint($large...) { // Your code here }
会...变魔术。
...