It is posible. I like this method:
HTML
<ul>
<li>
<a href="">drop</a>
<ul>
<li>
<a href="">inside drop</a>
</li>
</ul>
</li>
</ul>
CSS
ul {
list-style-type:none;
}
ul > li > ul{
position:absolute;
display:none;
}
ul > li > a{
/*your top anchor properties*/
}
ul > li:hover > ul{
display:block;
}
I've used the anchor's parent list object to declare the display
of the inner unordered list as block
. But if you'd prefer to use the anchor. use: ul > li > a:hover ul > li > ul{}
.
The above selector should work, if not stick to the one I've provided. Good luck with the menu.