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.
我发现自己经常不得不用margin-left: 0; margin-right: 0;. 我尝试将自定义布局中的排水沟设置为 0
margin-left: 0; margin-right: 0;
$my_layout: (gutters: 0); .my_class { @include with-layout($my_layout) { ... } }
但这不会将排水沟宽度设置为 0,它只是告诉 susy 根本没有设置排水沟。
如何在 susy 布局中将装订线设置为 0(而不仅仅是将它们设置为空)?
这似乎有效:
$my-layout: ( gutter-override: 0%, );
gutter-override通常用于即时覆盖排水沟,但 Susy 也允许对其进行全局设置。目前 Susy 忽略 的排水沟输出0,但似乎允许0%(或0任何其他单位)的排水沟输出。
gutter-override
0
0%
如果您想在 github 上提出问题,我愿意考虑添加更清晰null的功能。0
null