Hello,
I am running a test to build out a mega menu using the block editor to create the dropdown content.
I ran into issues using the navigation menu so decided to test using a simple headline block that when hovered reveals the dropdown.
If you know a better way please let me know?
When hovering above the “.dropdown class” headline I want the “.dropdown-content”container to appear.
Could you help me with this?
Here is an image of the layout in gutenberg editor:

you can inspect the site here:
https://xander.one/
Here is the css I want to apply:
/* dropdown */
.dropdown-content {
display: none;
position: absolute;
z-index: 1;
}
.dropdown:hover .dropdown-content {
display: block;
visibility: visible;
}
Thank you ๐