Someone told me once they it is possible to create menu's via CSS only, how can you?
feedback
|
|
Try the flyout menu at CSS Play by Stu Nicholls. | |||
|
feedback
|
|
I was typing up an answer, but this simple, short page goes over it better than I could say. Basically you do | |||
|
feedback
|
|
| |||
|
feedback
|
|
Google is your friend css menus. Also, checkout Eric Meyers page on Pure CSS Menus. | |||
|
feedback
|
|
It's done through the selector. You use a pseudo class to specify a particular element to only be displayed when its parent element is being hovered over.
This will only get the ul to display if its parent element, #nav is being hovered over. The ul now is the drop down menu into which you can place more list items. This will work with however many levels you want your drop down menu to have. This technique is showcased very nicely in this tutorial: CSS3 Dropdown Menu | |||
|
feedback
|