2

我有这样的事情:

<div id="someID">
   <div class="text">
     -----other html tags
   </div>
   <div class="text">
      -----other html tags
   </div>
   <div class="text">
     -----other html tags
   </div>
</div>

还有一些用于文本 div 的 CSS。可以为带有文本类的第二个 div 设置不同的 CSS 吗?

4

2 回答 2

2

您可以轻松地使用 nth-child:

#someID .text:nth-child(2) {
 background:red;   
}

演示:http: //jsfiddle.net/P6FKf/

于 2013-08-27T17:35:36.667 回答
1

您可以使用伪选择器 nth-child 即div.text:nth-child(2)

于 2013-08-27T17:36:03.160 回答