Good afternoon,
My current task is to create several stylesheets for the website. One of the website styles requires me to create a drop-down menu, but Iβm not allowed to change the HTML code at all, so basically Iβm asked to create a drop-down menu with CSS only.
Here is the HTML code that should appear as a drop-down menu:
<div id="global-nav"> <ul> <li><a href="#products">Products</a> <ul> <li><a href="#widgets">Widgets</a></li> <li><a href="#sites">Sites</a></li> <li><a href="#gadgets">Gadgets</a></li> </ul> </li> </ul>
However, there are other requirements: There should not be any points or circles preceding each element of the list.
I am wondering if this task can only be done with CSS or not. Is there a way to do this using CSS?
source share