Is there a specific effect that can only be achieved when two classes are present simultaneously?
For example:
.positive{
color:#46a546;
}
.positive:after{
content: "\25b2";
}
.negative{
color:#F00;
}
.arrow:after{
content: "\25bc";
}
<span class="positive"> hi </span>
<span class="positiveArrow"> hi </span>
<span class="negativeArrow"> hi </span> // current situation
<span class="positive arrow"> hi </span>
<span class="negative arrow"> hi </span> // desired outcome