尝试
div.Box book.small:last-of-type, div.Box toy.small:last-of-type { /* styles */ }
这是一个小提琴。
您必须将属性
last-of-type
div.Box book.small:last-of-type, toy.small:last-of-type
自 2021 年 1 月以来,现在支持跨浏览器的
:is()
:where()
div.Box :is(book,toy).small:last-of-type { /* styles */ }