因此,susy2 中超级有用的 'gallery' mixin 使用了 nth-child 选择器,这在 IE8 中不起作用。那么有什么好的解决方法呢?
我正在考虑扩展画廊 mixin 并添加特定于 ie8 的样式。susy有可能吗?
这是我的 sass 代码,如果有帮助的话:
.grid_gallery li.slide {
@include gallery(12 of 24); //2 across
margin-bottom: gutter(24);
@include breakpoint(600px) {
@include gallery(6 of 24); //4 across
}
@include breakpoint(769px) {
@include gallery(4.8 of 24); //5 across
}
@include breakpoint(1200px) {
@include gallery(4 of 24); //6 across
}
}
这是看到此 SASS(简化)转换为 css 的要点: http: //sassmeister.com/gist/59927698cfbba6fadbf5
这是我想要的外观: