我正在使用 libsass,因为它比 ruby sass 更快,并且使用 bower 导入 susy。
@import "../bower_components/susy/sass/susy";
$susy: (
columns: 12,
gutter-position: inside,
global-box-sizing: border-box
);
#content {
background-color: red;
@include span(9);
}
#sidebar {
background-color: blue;
@include span(3);
}
输出是:
#content {
background-color: red;
width: 75%;
float: left;
padding-left: 0.8333333333%;
padding-right: 0.8333333333%;
}
#sidebar {
background-color: blue;
width: 25%;
float: left;
padding-left: 0.8333333333%;
padding-right: 0.8333333333%;
}
它不能正常工作,它会破坏页面。但是,ruby sass 输出仅将填充更改为,0.83333%
并且一切正常。
正如您在上面看到的那样,libsass 填充输出与 ruby sass 输出完全不同。
出了什么问题以及如何解决?