Is it possible to select the last n items with nth-child?(是否可以选择带有 nth-child 的最后 n 个项目?)
问题描述
使用标准列表,我试图选择最后 2 个列表项.我有 An+B
的各种排列,但似乎没有选择最后 2 个:
Using a standard list, I'm trying to select the last 2 list items. I've various permutations of An+B
but nothing seems to select the last 2:
li:nth-child(n+2) {} /* selects from the second onwards */
li:nth-child(n-2) {} /* selects everything */
li:nth-child(-n+2) {} /* selects first two only */
li:nth-child(-n-2) {} /* selects nothing */
我知道像 :nth-last-child()
这样的新 CSS3 选择器,但如果可能的话,我更喜欢在更多浏览器中工作的东西(不要关心 IE特别是).
I'm aware of a new CSS3 selectors like :nth-last-child()
but I'd prefer something that works in a few more browsers if possible (don't care about IE particularly).
推荐答案
这将选择列表的最后两个 iem:
This will select the last two iems of a list:
li:nth-last-child(-n+2) {color:red;}
<ul>
<li>fred</li>
<li>fred</li>
<li>fred</li>
<li>fred</li>
<li>fred</li>
<li>fred</li>
<li>fred</li>
<li>fred</li>
</ul>
这篇关于是否可以选择带有 nth-child 的最后 n 个项目?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:是否可以选择带有 nth-child 的最后 n 个项目?


- 使用RSelum从网站(报纸档案)中抓取多个网页 2022-09-06
- Quasar 2+Apollo:错误:找不到ID为默认的Apollo客户端。如果您在组件设置之外,请使用ProvideApolloClient() 2022-01-01
- Fetch API 如何获取响应体? 2022-01-01
- 失败的 Canvas 360 jquery 插件 2022-01-01
- addEventListener 在 IE 11 中不起作用 2022-01-01
- 400或500级别的HTTP响应 2022-01-01
- Flexslider 箭头未正确显示 2022-01-01
- Css:将嵌套元素定位在父元素边界之外一点 2022-09-07
- 如何使用 JSON 格式的 jQuery AJAX 从 .cfm 页面输出查 2022-01-01
- CSS媒体查询(最大高度)不起作用,但为什么? 2022-01-01