css选择前几个元素或者后几个元素

css选择前几个元素或者后几个元素

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<title></title>
<style type="text/css">
#nth-test div:nth-child(-n + 4) {
background-color: red;
}
</style>
</head>
<body>
<div id="nth-test">
<div>1</div>
<div>2</div>
<div>3</div>
<div>4</div>
<div>5</div>
<div>6</div>
<div>7</div>
</div>
</body>
</html>

选前四个:

1
2
3
#nth-test div:nth-child(-n + 4) {
background-color: red;
}

css选择前几个元素或者后几个元素

选弟3个往后的:

1
2
3
#nth-test div:nth-child(n + 3) {
background-color: red;
}

css选择前几个元素或者后几个元素

选偶数元素:

1
2
3
#nth-test div:nth-child(2n) {
background-color: red;
}

css选择前几个元素或者后几个元素

选基数元素:

1
2
3
#nth-test div:nth-child(2n+1) {
background-color: red;
}

css选择前几个元素或者后几个元素


css选择前几个元素或者后几个元素
https://github.com/chergn/chergn.github.io/e750896b1ea5/
作者
全易
发布于
2024年3月28日
许可协议