<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title></title>
</head>
<!--小于ie10所用的样式-->
<!--[if lt IE 10]>
<link rel="stylesheet" type="text/css" href="css/ie.css">
<![endif]-->
<style>
:root .box{
width: 100px;
height: 100px;
background: black;
}
/*兼容ie,记得再写一次样式*/
.box{
width: 100px;
height: 100px;
background: red\9; /*ie8*/
*background: blue; /*ie7*/
}
</style>
<body>
<div class="box">
</div>
</body>
</html>
浙公网安备 33010602011771号