I wanted to know if there's a way I can simplify this CSS code, I'm doing it in WordPress:
#cont1:hover h3{color:#fff;}
#cont1:hover p{color:#fff;}
#cont1:hover i{color:#fff;}
#cont2:hover h3{color:#fff;}
#cont2:hover p{color:#fff;}
#cont2:hover i{color:#fff;}
#cont3:hover h3{color:#fff;}
#cont3:hover p{color:#fff;}
#cont3:hover i{color:#fff;}
I already tried to use a comma (..hover h3, p, i{...}) but it didn't work, and I don't even know how to search for it.