首页 > 开发 > CSS > 正文

CSS中几种浏览器对不同版本的支持与区分写法

2024-07-11 08:45:49
字体:
来源:转载
供稿:网友
!important 可被FireFox和IE7识别
* 可被IE6、IE7识别
_ 可被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]-->
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表