I need assistance with setting the background-color of this <ul>
to none while also adjusting the link's background-color to black.
Here is the CSS code I have used:
a:link {
background-color: black
}
And here is the HTML code snippet:
<div>
<ul class="navg">
<li><a href="index.html">Home</a></li>
</ul>
</div>
Please assist me in achieving the desired result. Thank you.