I am currently facing an issue related to the appearance of my webpage. The image on the left shows how it looks without a background color set for the element with ID "landing-wrap", while the one on the right includes a background color for the same element.
Below is the CSS code for my dropdown menu:
nav ul li a{
text-decoration: none;
padding: 10px;
margin: 0;
border-bottom: 1px solid #293133;
display: block;
background: #404040;
color: #fff;
}
Additionally, here is the CSS for the div located below the navigation menu:
#landing-wrap {
background: #00AFAA;
height: 600px;
}