CSS 如何选择特定 class 的孙子元素,同时排除最后一个?
如何用 CSS 选择特定 class 的孙子元素并排除最后一个
为了选择一个 class 为 "parent" 的 div 中,所有拥有 class 为 "interline" 的 p 元素,但排除最后一个,我们可以使用以下 CSS 代码:
`
.parent > div:not(:last-child) .interline {<br> color: red;<br>}`
解释:
如何用 CSS 选择特定 class 的孙子元素并排除最后一个
为了选择一个 class 为 "parent" 的 div 中,所有拥有 class 为 "interline" 的 p 元素,但排除最后一个,我们可以使用以下 CSS 代码:
`
.parent > div:not(:last-child) .interline {<br> color: red;<br>}`
解释: