<!DOCTYPE html>
<html>
<head>
width:200px;
height:200px;
background-color:red;
/*IE8中,显示为 orange 的背景色*/ | |
background-color:orange\0; | |
/*IE9,IE10中,背景颜色为 purple 色*/ | |
background-color:purple\9\0; | |
/*IE7中,显示为 blue 的背景色*/ | |
+background-color:blue;/*IE*6,7/ | |
/*IE6中,显示为 green 的背景色*/ | |
-background-color:green; |
</head>
<body>
<div id="d1"></div>
</body>
</html>
原文:http://www.cnblogs.com/zhangailing/p/6666706.html