This question already has an answer here:
- CSS3 combining selectors with OR instead of AND 3 answers
May be the question title is bit confusing, but to give a specific example
body.page-status .panel.panel-info .server .dot {
font-size: 10px;
}
I also want this rule to apply for
body.page-status .panel.panel-info .client .dot {
font-size:10px;
}
If you see closely, the only difference between 2 selectors is .server
and .client
Can I combine them in 1 rule somehow?
Thanks