我有这样的事情:
<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吗?
答案 0 :(得分:2)
答案 1 :(得分:1)
您可以使用伪选择器nth-child,即div.text:nth-child(2)