Skip to content Skip to sidebar Skip to footer

Menu With Sublevels On Hover Using Css Only

I want to know if it is possible, with pure html and css (no javascript, htc files, ...), to create a menu that has a sort of dropdown effect for subitems. It doesn't have to slide

Solution 1:

Solution 2:

Please take a look at this pure css menu creator: purecssmenu.com

Solution 3:

I've tackled this a couple of times.. I wanted pure CSS as well that was layed out using UL's and LI's. It took me a while and a lot of reading and I ended up writing my own based on the source of a lot of others. Unfortunately, I had to make sure it worked in IE6 as well..

This site has a lot of good examples: CSSPlay

As well, you might look at the source for this one: CSS Menus

Mine ended up being a combination of several.

Solution 4:

It's very common drop down CSS menu. Look here http://menu.so/product-category/css-menu/dropdown-css-menu

The hover-show effect is made with li>ul{display:none} li:hover>ul{display:block;} selector.

Post a Comment for "Menu With Sublevels On Hover Using Css Only"