具有多个选择器的 CSS 最后类型

问题描述 投票:0回答:3
css css-selectors
3个回答
4
投票

尝试

div.Box book.small:last-of-type,
div.Box toy.small:last-of-type {
    /* styles */
}

这是一个小提琴


1
投票

您必须将属性

last-of-type
应用于两个选择器:

div.Box book.small:last-of-type, toy.small:last-of-type

0
投票

自 2021 年 1 月以来,现在支持跨浏览器的

:is()
:where()
伪选择器允许您通过结合这两个规则来进一步改进:

div.Box :is(book,toy).small:last-of-type {
    /* styles */
}
© www.soinside.com 2019 - 2024. All rights reserved.