CSS3中only-child伪类选择器
<body>
<style type="text/css">
//只对li1设置样式
li:nth-child(1):nth-last-child(1){
background:yellow;
}
</style>
<h2>列表1</h2>
<ul>
<li>li1</li>
</ul>
<h2>列表2</h2>
<ul>
<li>li1</li>
<li>li2</li>
</ul>
</body>
另外:可以直接使用
li:only-child{
background:yellow;
}
来达到相同的目的。