I have a drop down menu and I wanted to use CSS to transition it in and out nicely when it pops down.
I learned that transitions don't work on the display property. It must be block.
So instead I used opacity as the transition property and I made it have a position of absolute and moved it way off screen when it is not hovered on. (left: -9999px;)
Now it transitions in nicely because it moves back into place via left:0; and then i use transition: opacity 10s; and the opacity looks good on hover.
But transitioning out does not have the transition because before the opacity has a chance to change back to 0. it moves back to -9999px before you can see the change.
What can I do?