CSS中几种浏览器对不同关键字的支持,可进行浏览器兼容性重复定义

 

!important    可被FireFoxIE7识别

*                   可被IE6IE7识别

_                   可被IE6识别

*+                 可被IE7识别

 IE专用的条件注释

<!--其他浏览器 -->

<link rel="stylesheet" type="text/css" href="css.css" />

<!--[if IE 7]>

<!-- 适合于IE7 -->

<link rel="stylesheet" type="text/css" href="ie7.css" />

<![endif]-->

<!--[if lte IE 6]>

<!-- 适合于IE6及一下 -->

<link rel="stylesheet" type="text/css" href="ie.css" />

<![endif]-->

 

相关文章:

  • 2021-12-06
  • 2022-12-23
  • 2021-06-14
  • 2021-06-06
猜你喜欢
  • 2021-04-16
  • 2022-02-19
  • 2021-08-21
  • 2022-12-23
  • 2021-04-07
  • 2021-10-23
相关资源
相似解决方案