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.
有没有办法取消或删除指南针功能的文本阴影效果?
例如,我想为所有标题元素全局设置文本阴影,然后在某些情况下消除它。
h2 { @include single-text-shadow($blue, 1px, 1px, 0); }
与 CSS 一样,只需声明none:
none
.specific h2 { @include single-text-shadow(none); }