CSS中几种浏览器对不同版本的支持与区分写法
发布时间:2016-12-27 来源:查字典编辑
摘要:!important可被FireFox和IE7识别*可被IE6、IE7识别_可被IE6识别*+可被IE7识别IE专用的条件注释
!important 可被FireFox和IE7识别
* 可被IE6、IE7识别
_ 可被IE6识别
*+ 可被IE7识别
IE专用的条件注释
<>
<link rel="stylesheet" type="text/css" href="css.css" />
< 适合于IE7 -->
<link rel="stylesheet" type="text/css" href="ie7.css" />
<![endif]-->
< 适合于IE6及一下 -->
<link rel="stylesheet" type="text/css" href="ie.css" />
<![endif]-->