工作生活

sass中的特殊符号

2019-07-04  本文已影响0人  Sun____

介绍
在我们看完前面的一些指令之后,sass中的内容我们已经基本看完了,在总结之前我们在看一下sass我们需要注意的一些特殊符号

a.important {@extend .notice;}

当我们写下这段代码时,因为没有notice的样式所以一定会报错,想要忽略的话可以这样

a.important {@extend .notice !optional;}

在官网中说
It's also an error if the only selector containing .notice is h1.notice, since h1 conflicts with a and so no new selector would be generated.
但是在我亲自试验后发现有没有!optional结果是一样的也许是版本问题吧。
总结

上一篇下一篇

猜你喜欢

热点阅读