There is a class B element that has the following CSS applied:
.B{ display:none; }
Then, there is a class A element with the following CSS effect when hovered over:
A:hover .B{ display:block; }
The desired outcome is to make the class B element appear when hovering over the class A element. Is this approach correct? However, it seems like it's not working as expected. Thank you in advance for any assistance.