Dropdown menus are often done with a lot of JavaScript but I wanted to do one using CSS. It is reasonably cross-browser and standards compliant.
Please note that I do not recommend using this kind of menu for public sites, since it is inaccessible for users with CSS turned off and several mobile browsers. Some users also find it difficult to navigate with pull-down menus. If you use this kind of menu on a site, make sure that navigation is possible even without the pull-down.
Having said that, here is an example of how such a menu could look like. Hover the headers below to see it in action.
How is this done? The markup looks like this:
As you might guess, the technique is basically about nesting UL elements. The first level of list items is the main navigation.
The second level of unordered lists is the actual drop-down. They are initially invisible, done by setting display:none. They are also positioned absolute.
The second level is displayed on hover using CSS :hover pseudo class.
Unfortunately, IE has lousy support for the :hover pseudo class. So to make it work properly, we have to use a bit of JavaScript to attach mouse-over events to the list elements (thank you, Patrick Griffiths and Dan Webb). Here is one way of doing this:
The solution also uses the infamous “Holly Hack” in CSS, named after Holly Bergevin. This technique is a method to fix weird rendering bugs in IE6 by triggering hasLayout.
As always, there is plenty of room for improvement and this code should only serve as a humble example (for instance, don’t use inline styles and scripts).
Related posts
Comments
No comments yet.
Leave a reply