how do I make a drop down list using html css code? So what I'm trying to do for an assigment is I have something like favorite movies and a list of them I want the list of my favorite movies to drop down after I hover over favorite movies. here as an example of what i have ...what would be the code to make those movies drop down after I hover over the favorite movies?
<div id="navigation">
<ul>
<li><h3><a href="#">Favorite Movies</a></h3>
<ol>
<li><a href="#">Saw</a></li>
<li><a href="#">SawII</a></li>
<li><a href="#">SawIII</a></li>
<li><a href="#">SawIV</a></li>
<li><a href="#">SawV</a></li>
</ol>
</li>
</ul>
</div> |