我有一个@extend规则的问题,这是我得到的(关注h1):
.content-header { // CSS properties h1 { // CSS properties } } .Box-header { // CSS properties h1 { @extend .content-header h1; // My selector problem! // And his own CSS properties } }
所以会是:
.content-header h1,.Box-header h1 { /* Happily sharing the same CSS properties */ }
但是,似乎@extend不喜欢这样,是没有其他方式写这个没有给h1一个类?