My CSS code appears to be bulkier than necessary, and I'm wondering if there is a way to streamline it by using selectors that can target multiple identifiers.
For instance:
.scrollbar.horizontal:hover .button
{
}
.scrollbar.horizontal:active .button
{
}
I would like to simplify it to something like:
.scrollbar.horizontal:(active|hover) .button
{
}
Is there a syntax available for achieving this?