Possible Duplicate:
CSS Drop Down Menu
I am trying to create a drop down menu (on the navigation bar), but I have not been able to do so yet (yes, I am new to CSS and HTML).. So, far, I have the following in CSS:
#navbar ul {
margin: 0;
padding: 5px;
list-style-type: none;
text-align: center;
background-color: #000;
}
#navbar ul li {
display: inline;
}
#navbar ul li a {
text-decoration: none;
padding: .2em 1em;
color: #fff;
background-color: #000;
}
Then, I have the following in HTML:
<div id="navbar">
<ul>
<li><a href="abc.html">| ABC |</a></li>
<li><a href="xyz.html">| XYZ |</a></li>
</ul>
</div>
What I would like to have is more sub-menus in the form of drop down under ABC and XYZ. Could someone point me in the right direction to achieve this?
Thanks in advance.