I encountered an issue while trying to create a Super sub-menu. The problem is that the super sub-menu appears when I hover over the main menus, instead of the sub-menus. I suspect there may be something wrong with the display: none; attribute, but I'm unsure how to resolve it. I attempted to add the class and double-checked the HTML for typos or errors, but I am still confused and stuck. Please assist me with this dilemma.
Here is the code snippet:
* {
margin: 0;
padding: 0;
}
body {
background-image: url(photo-1542831371-29b0f74f9713.jpg);
background-size: cover;
}
nav {
/* this is a tag */
height: 60px;
background-color: white;
display:flex;
}
nav a {
font-family: arial, sans-serif;
color: #222;
font-size: 18px;
line-height: 55px;
padding: 2.3px 14px;
text-decoration: none;
text-align: center;
display: block;
}
nav form {
max-width: 100%;
height: 60px;
}
nav ul {
display:flex;
list-style: none;
}
nav li:hover>a {
background: rgb(224, 224, 224);
cursor: pointer;
}
nav ul li ul {
display: none;
position: absolute;
background-color: rgba(255, 238, 238, 0.89);
backdrop-filter: blur(5px);
border-radius: 0px 0px 4px 4px;
}
nav ul li:hover ul {
display: block;
}
nav ul li ul li ul {
display: none;
position: absolute;
top: 0;
right: 0;
-ms-transform: translate(100%,0);
-webkit-transform: translate(100%,0);
transform:translate(100%,0);
list-style: none;
}
.subMenu li:hover>.SuperSubMenu{
display: block;
}
<!DOCTYPE html>
<html>
<head>
<title>Wall of nothing</title>
<link rel="stylesheet" type="text/css" href="Style.css">
</head>
<body>
<nav id="navbar">
<form name="" method="" action="BUTTON%20TEST.html">
<input type="image" name="IB1" src="gradient-coding-logo-template_23-2148809439.jpg" width="70" height="60">
</form>
<ul>
<li>
<a href="about.php">About</a>
<ul>
<li>
<a href="about.php#expectations">Expectations</a>
</li>
<li>
<a href="about.php#faq">FAQ</a>
</li>
<li>
<a href="laptopprogram.php">Laptop Program</a>
</li>
</ul>
</li>
<li>
<a href="why.php">Why?</a>
<ul>
<li>
<a href="#">What?</a>
</li>
<li>
<a href="#">Events & Activities</a>
</li>
<li>
<a href="#">Meet The Grads</a>
</li>
</ul>
</li>
<li>
<a href="#">Events</a>
<ul>
<li>
<a href="#">Opportunities</a>
</li>
<li>
<a href="#">asd</a>
</li>
</ul>
</li>
<li>
<a href="" target="_blank">assd</a>
</li>
<li>
<a href="contact.php">Contact</a>
<ul class="subMenu">
<li>
<a href="#">Numbers</a>
<ul class="SuperSubMenu">
<li>
<a href="#">Person1</a>
</li>
<li>
<a href="#">Person2</a>
</li>
</ul>
</li>
<li>
<a href="#">Fax</a>
</li>
</ul>
</li>
</ul>
</nav>
</body>
</html>