IE6 does not support: Solution to hover pseudo-class effect_html/css_WEB-ITnose

WBOY
Release: 2016-06-24 12:00:06
Original
822 people have browsed it

   :hover是在CSS中用来制作效果最常用到的一个伪类,比如:标签或div上的鼠标悬停效果 li:hover,div:hover等.   但这种效果是css2及以上版本才添加的,对于只支持css1的浏览器就显示不出来。   在IE6中只兼容a:hover,要使用li:hover或div:hover,需引用一个文件使其兼容: <strong>  csshover.htc  </strong> (点击直接查看)   放在网站的根目录下,并在css文件(或者<style>标签)中,加上   body   {        behavior:url("...csshover.htc");    }    放在其他目录下也行, <strong>注意路径</strong> 对即可<strong>。</strong>
Copy after login

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!