Susy Error: Undefined mixin 'susy-grid-background'

发布于 2022-09-06 00:15:30 字数 295 浏览 20 评论 0

@import "susy";
$total-columns:12; //12列网格系统
$column-width:5em;
$gutter-width:1em; //每列间隙
$grid-padding:$gutter-width; 

[class^="inner"]{
    @include container();
    @include susy-grid-background;
}

保存执行后,报错:Undefined mixin 'susy-grid-background'

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

策马西风 2022-09-13 00:15:30

如果只是网格是问题,我使用:

@include container(show);
要么

@include container(show overlay);
你是否查阅了http://susy.readthedocs.org/e...上的文档?

迷爱 2022-09-13 00:15:30

楼上回答解决了我的问题,可以用@include container(show)

另外,@include susy-grid-background是在《Sass和Compass设计师指南》一书中被提到的。
其无法使用问题,在https://www.zhihu.com/questio... 找到了答案:@import "susyone"
官网解释:是使用susy旧语法需要引入"susyone"

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文