I want to create submenus with css in IE ,but IE does not work with hover action.I don't want to use JavaScript.How can I solve this?.Please tell me the way.Is there another way to create submenus without css and script?If anyone know, pls tell me.
|
feedback
|
|
What do you mean IE does not work with hover action? IE6 and earlier only supports :hover on A tags and IE7 and later supports it on any tag. It is definitely possible to make 100% CSS menus. Here's what I found with a quick Google search. | |||||
|
feedback
|
|
IE6 and below supports the
| |||
|
feedback
|
|
I highly recommend using whatever:hover, an HTC extension that enables the use of the :hover pseudo-class on all elements, not just anchors, in IE6. Usage is simple. Add this to the header, changing the path to reflect your setup:
That's it! | |||
feedback
|
|
You can use the following code for IE6 based on jQuery library
Please change the selector ".menu li" to yours and wrote in CSS in the following way .menu li:hover, .menu li.hover { ... } | |||
|
feedback
|
|
I found this page but didn't have a chance to see if it was really CSS only. http://www.cssplay.co.uk/menus/final_drop.html My original method seems to no longer work on most browsers and wouldn't validate. | ||||
|
feedback
|