What is the SASS way called for DRY'ing something like this up, if there is one --> .content p, .content ul, .content li, .content a?

StackOverflow https://stackoverflow.com/questions/13164118

質問

What is the SASS way called for DRY'ing something like this up:

.content p, .content ul, .content li, .content a
役に立ちましたか?

解決

All 4 of those elements have styles in common?

.content {
    p, ul, li, a {
        // styles they all share
    }
}
ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top