css – 如何使用Compass filter mixin?

前端之家收集整理的这篇文章主要介绍了css – 如何使用Compass filter mixin?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我试图在SCSS中使用过滤器mixin
a {
  @include filter(grayscale(100%));
}

但是当我编译时,我收到这个错误

Undefined mixin 'filter'.

我正在使用最新版本的Gem与Rails框架。

http://compass-style.org/reference/compass/css3/filter/

解决方法

SASS示例
@import 'compass/css3/filter'

.filtered
  @include filter(grayscale(50%))
  @include filter(blur(2px))
原文链接:https://www.f2er.com/css/218086.html

猜你在找的CSS相关文章