css nth-child 最后两个
时间: 2023-12-20 22:44:43 浏览: 138
使用css属性:nth-child(n)匹配选择第n个子元素
要选取最后两个元素,你可以使用 `:nth-last-child` 伪类选择器结合 `n-1` 的方式。以下是一个示例:
```css
/* 选取最后两个元素 */
:nth-last-child(-n+2) {
/* 样式 */
}
```
这个选择器将选取倒数第一个和倒数第二个元素应用样式。你可以根据需要调整选择器中的参数来选择不同的元素。
阅读全文