Question: I am facing a challenge with CSS3 styling. I have one class and one div. The class is currently set to display:none, but I want it to show when the mouse hovers over it (display:block).
I have attempted the following:
.1:hover + div#2
{
display: block;
}
Unfortunately, this code does not work as expected. Any suggestions on how to achieve this in CSS3? Your help is greatly appreciated!