Imagine wanting to apply the hover CSS property to multiple classes, you would typically have to write it like this:
a:hover, p:hover, div:hover{
// CSS properties
}
It can become repetitive having to add ":hover" to each class. Is there a way to streamline this code by applying "hover" just once for multiple classes? Are there any shortcuts available?