那么我有以下html:
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Gallery</title>
<link href="style.css" rel="stylesheet" />
</head>
<body>
<div>
<ul class="Boxes">
<li>
<span>Nature</span>
</li>
<li class="Add">
<div></div>
</li>
</ul>
</div>
</body>
</html>
和以下CSS:
body {
background: black;
color: white;
}
body .Boxes li {
width: 192px;
height: 192px;
font-size: 2.5em;
background: rgb(27, 161, 226);
}
body .Boxes li.Add div {
background-position: 0px -352px;
width: 192px;
height: 192px;
background-image: url("Sprites.png");
background-repeat: no-repeat;
background-color: transparent;
}
.Boxes {
list-style-type: none;
float: left;
}
.Boxes li {
margin: 10px; border: 0px currentColor;
float: left;
display: block;
list-style-type: none;
}
现在这很好用,但是如果我将“body .Boxes li.Add div {”行更改为“body .Boxes li.Add > div {”,那么它在 IE9 中停止工作,我不知道为什么?注意:它仍在 Opera、Chrome 中运行。