Sass extend with pseudo selectors
问题 I am using compass to manage some sass files on mac osx. I have these files: sass/ screen.scss partials folder/ ... _fonts.scss _functions.scss ... In fonts I have this rule which I would like to reuse @extend. //fonts.scss .icon-ab-logo, { font-family: 'icomoon'; speak: none; font-style: normal; font-weight: normal; font-variant: normal; text-transform: none; line-height: 1; -webkit-font-smoothing: antialiased; } .icon-ab-logo:before { //i want to reuse this. content: "\e000"; } In functions