I have this on my hover CSS ->
.menu-icon:hover,
.source-icon:hover,
.title h1:hover,
.title h2:hover,
.list-title h1:hover,
.list-title h2:hover,
.single-content a:hover,
.button:hover,
.pagination .prev:hover,
.pagination .next:hover,
.copyright:hover,
.copyright a:hover {
fill: #e00;
color: #e00;
}
Is there a way to simplify about selecting all link element on hover CSS?
Because I tried *a:hover
or * + a:hover
but it doesn't work?