I have created a clickable dropdown menu and I am trying to add circles behind the text on each list item (LI) but for some reason, it's not working. I checked my CSS code and I don't see any conflicts that would be causing this issue. Can someone take a look and see if there is an error in my code?
HTML CODE:
<ul id = "mobddown" style="display: none;">
<a href="#"><li>Берово</li></a>
<a href="#"><li>Берово</li></a>
<a href="#"><li>Берово</li></a>
<a href="#"><li>Берово</li></a>
</ul>
CSS CODE:
#mobddown{
font-size: 2em;
display: none;
margin: 0;
padding: 0;
list-style-type: circle;
}
#mobddown li{
display: block;
margin: 0;
padding: 0.4em;
width: 100%;
}
#mobddown a{
text-decoration: none;
color: black;
width: 100%;
}
#mobddown li:hover{
background-color: #35aa96;
color: white;
}