Menu With Sublevels On Hover Using Css Only
Solution 1:
Take a look at
Pure Css Dropdown Menu Without Using Javascript
GRC's Script-Free Pure-CSS Menuing System
100% Pure CSS Menu without Javascript
I would also like to know why you don't want JavaScript.
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"