博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
ie6 ie7 ie8 ie9 ff css 区别
阅读量:5172 次
发布时间:2019-06-13

本文共 1397 字,大约阅读时间需要 4 分钟。

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>css 区别ie6 ie7 ie8 ie9 ff</title>
<style type="text/css">
div{ width:500px; height:300px;  border:1px solid #f00; margin:0px auto;}
.info{
 /* background:#000!important\0 ||  background:#000!important\0\9 ie6识别  ff ie7 ie8 ie9 不识别*/
 /*background:#000!important   ie6 ff ie7 ie8 ie9 识别 */
 /*background:#000;  ie6 ff ie7 ie8 ie9 识别 */
 /*background:#000\0;  ie6 ff ie7 不识别 ie8 ie9 识别 */
 /*background:#000\9;  ie6 ie7 ie8 ie9 识别 ff不识别 */
 /*background:#000\9;  ie6 ie7 ie8 ie9 识别 ff不识别 */
 /*background:#000\0\9; ie6 ie7 ff 不识别 ie8 ie9 识别*/
 /* *background:#000; ie6 ie7识别 ie8 ie9 ff 不识别*/
 /* *_background:#000; _background:#000; ie6 识别ie7 ie8 ie9 ff 不识别*/
background:#FF0; /* ff */ /*黄色*/
background:#0F0\9;/* ie 8 ie 9*//*绿色*/ 
*background:#F00;/*ie 6 ie 7*/ /* 红色*/
_background:#00F; /*ie 6*/ /*蓝色*/
}
</style>
<!--[if IE 8]>
<style type="text/css">
.info{background:#000;}
</style> 
<![endif]-->
 
</head>
 
<body>
  <div class="info">
      可以用 \0 \9 来表示ie8 和ie9<br>
      可以用 * 区别 IE7<br>
      可以用 _ 区别 ie6<br>
      但最后无法 区别IE8 ie9<br>
      所以值能用<!--[if IE 8]> ie8 样式<![endif]-->
      一定要放在最后
      如果各位有更好的办法或哪里写的有误,请在评论中注明
  </div>
</body>
</html>
 
转自:

转载于:https://www.cnblogs.com/webcc/archive/2012/05/28/2521671.html

你可能感兴趣的文章
ubuntu的home目录下,Desktop等目录消失不见
查看>>
建立,查询二叉树 hdu 5444
查看>>
[Spring框架]Spring 事务管理基础入门总结.
查看>>
2017.3.24上午
查看>>
Python-常用模块及简单的案列
查看>>
LeetCode 159. Longest Substring with At Most Two Distinct Characters
查看>>
基本算法概论
查看>>
jquery动态移除/增加onclick属性详解
查看>>
JavaScript---Promise
查看>>
暖暖的感动
查看>>
Java中的日期和时间
查看>>
Django基于admin的stark组件创建(一)
查看>>
C. Tanya and Toys_模拟
查看>>
springboot jar包运行中获取资源文件
查看>>
基于FPGA实现的高速串行交换模块实现方法研究
查看>>
Java Scala获取所有注解的类信息
查看>>
delphi ,安装插件
查看>>
case when then的用法-leetcode交换工资
查看>>
11.28.cookie
查看>>
BeanShell简介
查看>>