You can achieve the same effect by placing .hover_cal
in the same order as the .cell_call:hover
pseudo class:
.body_cal .cell_cal:hover .bg_cal,
.body_cal .hover_cal .bg_cal{
opacity: 0.2;
transition: .3s ease-in;
}
1
solved Css with multiple classes not working when one is :hover [closed]