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