Is there a way to deactivate the :hover
effect when :checked
on a div that contains my checkbox?
I've attempted:
input[type=checkbox]:checked ~ #mydiv:hover {my:css}
This only seems to work for the div/class that does not include my checkbox...
Any suggestions on how to accomplish this?
Below is my code:
http://codepen.io/casimirp/pen/gxfqE?editors=110
I am specifically looking to modify the #card:hover{
top:50px;}
Thank you