Can I make a certain element fade in when I hover over another one, and make it fade out when my mouse isn\'t on the element anymore?
I tried adding a transition
transition
Here's a pure css solution for your specific html:
fiddle
for the css I used opacity instead of display and added the following:
#button:hover ~ #menu, #menu:hover { opacity:1; height:100px; }