Within my HTML, I have two div elements. The first div is filled with Menu items represented by li
elements, while the second div contains submenus. My desired functionality involves displaying the submenu when hovering over a menu item's li
element using CSS.
li:hover{
//Display Submenu
}