Bootstrap 垂直梯度 mixin 定义如下:
#gradient {
.vertical (@start-color, @end-color) when (@disable-filters) {
/* code */
}
}
我打电话给.#gradient > .vertical(#fff, #ddd);
我的LESS。但是编译给了我以下错误。
ParseError: Syntax Error on line 104 in front.less:104:8
103 border-bottom: 2px solid white;
104 .#gradient > .vertical(#fff, #ddd);
105 }
注释掉上面的行可以解决这个问题。调用 Bootstrap 的垂直渐变混合的正确方法是什么?