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.

link|improve this question
feedback

5 Answers

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.

http://www.surguy.net/menu/index.html

link|improve this answer
This method needs first-child pseudo-selector to work – Ballsacian1 Jul 24 '09 at 5:55
Also it applies :hover to non ATags – Ballsacian1 Jul 24 '09 at 6:44
feedback

IE6 and below supports the :HOVER pseudo-class on <a> tags only. You can make the <a> tag behave like a block level element (I assume you are currently using <ol><li>) by applying the following CSS:

a.submenu { display: block; }
link|improve this answer
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:

<!--[if lte IE 6]>
    <style type="text/css">
    	body{behavior:url(path/to/iehover.htc);}
    </style>
<![endif]-->

That's it!

link|improve this answer
@cpharmston: Only works when JavaScript is enabled. An unobtrusive solution is preferred. – Andrew Moore Jul 24 '09 at 5:09
feedback

You can use the following code for IE6 based on jQuery library

if (jQuery.browser.msie && navigator.userAgent.toLowerCase().indexOf('msie 6') > -1){
    jQuery(document).ready(function() {
        jQuery('.menu li').hover(
            function() {
                jQuery(this).addClass('hover');
            },

            function() {
                jQuery(this).removeClass('hover');    
            }
        );
    });
}

Please change the selector ".menu li" to yours and wrote in CSS in the following way .menu li:hover, .menu li.hover { ... }

link|improve this answer
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.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown