How to create this horizontal menu with dropdown? [closed]
How to do something like this?
pic http://img202.imageshack.us/img202/6295/menupmm.png
Any tutorial online?
Nested ul
's.
The dropdown affect can be created with pure CSS by doing something like:
ul.toplevel li ul.secondlevel
{
display:none;
}
ul.toplevel li:hover ul.secondlevel
{
display:block;
}
精彩评论