本文作者: jsweibo
本文链接: https://jsweibo.github.io/2020/03/19/CSS%E4%B8%AD%E7%9A%84-nth-of-type-%E4%B8%8E-nth-of-last-type/
摘要
本文主要讲述了:
:nth-of-type()
:nth-last-of-type()
正文
:nth-of-type()
用于设置:顺序指定序数的相同类型的子元素的样式
参数取值范围:
odd
奇数,相当于表达式:2n + 1
even
偶数,相当于表达式:2n
n
表达式
示例:将id=a
和id=b
的背景颜色设为红色
id=a
是顺序偶数个<p>
id=b
是顺序偶数个<div>
1 |
|
:nth-last-of-type()
用于设置:逆序指定序数的相同类型的子元素的样式
参数取值范围:
odd
奇数,相当于表达式:2n + 1
或2n - 1
even
偶数,相当于表达式:2n
n
表达式
示例:将id=a
和id=b
的背景颜色设为红色
id=a
是逆序偶数个<p>
id=b
是逆序偶数个<div>
1 |
|
参考资料
本文作者: jsweibo
本文链接: https://jsweibo.github.io/2020/03/19/CSS%E4%B8%AD%E7%9A%84-nth-of-type-%E4%B8%8E-nth-of-last-type/
本文对你有帮助?请支持我
- 本文链接: https://jsweibo.github.io/2020/03/19/CSS%E4%B8%AD%E7%9A%84-nth-of-type-%E4%B8%8E-nth-of-last-type/
- 版权声明: 除非另有说明,否则本网站上的内容根据署名-非商业性使用-相同方式共享 4.0 国际 (CC BY-NC-SA 4.0) 进行许可。