I've got some element I want to fade with CSS3. It can be simply done by 2 classes with opacity: 0
and opacity: 1
, but problem is faded element is some dropdown menu and it has elements under it, so even if it has opacity: 0, its still 'clickable' and elements under it are not.
If I add display: none;
attribute, element is not animated.
Is it possible with css only to avoid it?
I've checked this but didnt find working solution