I want something to happen on hover for my element, but I also want that hover to trigger changes for another class.
Here is what I have tried:
.meet:hover{
color:#EE3A43 !important;
background-color:rgba(255,255,255,.3) !important;
}
.meet:hover .trainerContent{
opacity:.3;
}
Is what I am trying to achieve possible with just CSS?