My goal is to create a simple expanding menu. For instance, when hovering or clicking on an item like "Home", I want additional items to appear underneath it.
Specifically, I am looking for a floating div to display below the menu item. I attempted the following CSS code:
menubar {
visibility:hidden
}
menubar:hover, menubar:active {
visibility:visible
}
Unfortunately, this approach did not work as expected!
Can anyone offer some assistance? Thank you.