IE6 does not support hover solutions

Source: Internet
Author: User

First solution (recommended)

IE6 and the lower browser support for ": hover" is not ideal for similar "P:hover", "Img:hover", "#header: Hover" ..., today to introduce a new method that can perfectly solve IE6 does not support the situation of hover, The usage is simple, and the downloaded "CSSHOVER.HTC" file is defined within the body style.

Body{behavior:url ("CSSHOVER.HTC");}

HTC file

Second Solution

<style type= "Text/css" >
p:hover,p.hover {background: #eee;} /* Just write one more. Hover only */
</style>

The following code will be placed at the bottom of the page </body> before:
<script type= "Text/javascript" >
<!– Let all tags support hover
function $ () {
if (document.all) {//determine if IE browser
var Obj=document.all;
for (Var i=0;i<obj.length;i++) {
Obj[i].onmouseover=function () {
This.classname= "Hover"
} ;
Obj[i].onmouseout=function () {
This.classname= ""
}
}
}
}
$();
–>
</script>

http://www.w3cfuns.com/forum.php?mod=viewthread&tid=347&fromuid=7146 Original

Yesterday wrote a small example of incompatible solutions found, special reprint.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.