CSS中的:nth-of-type()与:nth-of-last-type()


本文作者: 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/

摘要

本文主要讲述了:

  1. :nth-of-type()
  2. :nth-last-of-type()

正文

:nth-of-type()

用于设置:顺序指定序数的相同类型的子元素的样式

参数取值范围:

  • odd 奇数,相当于表达式:2n + 1
  • even 偶数,相当于表达式:2n
  • n表达式

示例:将id=aid=b的背景颜色设为红色

  • id=a是顺序偶数个<p>
  • id=b是顺序偶数个<div>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
</head>
<body>
<div id="foo">
<p>p</p>
<div>div</div>
<p id="a">p</p>
<div id="b">div</div>
</div>
<style>
#foo :nth-of-type(2n) {
background-color: #f00;
}
</style>
</body>
</html>

:nth-last-of-type()

用于设置:逆序指定序数的相同类型的子元素的样式

参数取值范围:

  • odd 奇数,相当于表达式:2n + 12n - 1
  • even 偶数,相当于表达式:2n
  • n表达式

示例:将id=aid=b的背景颜色设为红色

  • id=a是逆序偶数个<p>
  • id=b是逆序偶数个<div>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
</head>
<body>
<div id="foo">
<p id="a">p</p>
<div id="b">div</div>
<p>p</p>
<div>div</div>
</div>
<style>
#foo :nth-last-of-type(2n) {
background-color: #f00;
}
</style>
</body>
</html>

参考资料

本文作者: 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/


本文对你有帮助?请支持我


支付宝
微信