我想使用last-of-type选择两个元素,但我不知道正确的语法是什么。如果这是html:
<div class="Box">
<book class="small"/>
<book class="small"/>
<notes/>
<notes/>
<toy class="small"/>
<toy class="small"/>
</div>
我想在Box中选择最后一本书和最后一个玩具,语法是什么?我虽然会:
div.Box book.small, toy.small:last-of-type { }
但这显然不正确。
答案 0 :(得分:4)
答案 1 :(得分:1)
您必须将属性last-of-type
应用于两个选择器:
div.Box book.small:last-of-type, toy.small:last-of-type