【发布时间】:2013-01-10 12:37:58
【问题描述】:
HTML:
<ul>
<li></li>
<li></li>
<li class="img"></li>
<li></li>
<li class="img"></li>
<li class="img"></li>
<li></li>
</ul>
CSS:
ul {
list-style-type: none;
}
li {
background-color: red;
margin: 5px;
width: 30px;
height: 30px;
float: left;
}
li.img:not(:first-child) {
background-color: blue;
}
结果:
http://jsfiddle.net/benfosterdev/K3ZnA/
我希望除第一个li.img 之外的所有li.img 都具有蓝色背景。
【问题讨论】:
标签: css