Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法重新定义 SASS mixins。我想覆盖 SASS mixin 以满足特定于站点的样式需求。有没有办法做到这一点?
我的快速测试似乎表明您可以不假思索地覆盖 mixins。您无法将它们重新打开到只允许覆盖某些属性的程度,但您可以轻松地完全替换它们。
=test color: red font-weight: bold =test color: blue p +test
p { color: blue; }
请注意,此测试是使用 Haml/Sass 3.0.2 (Classy Cassidy) 执行的,因此如果您之前遇到错误,这可能不适用于早期版本。