-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpseudo-classes-nth.html
85 lines (67 loc) · 1.23 KB
/
pseudo-classes-nth.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<title>PSEUDO-CLASSES ESTRUTURAIS</title>
<style>
/* Captura o primeiro filho do elemento pai */
p:first-child {
color: blue;
}
p:last-child {
color: red;
}
/* Captura o primeiro filho do mesmo tipo do elemento */
li:first-of-type {
color: green;
}
li:last-of-type {
color: orange;
}
/* Escolhendo filhos em uma herença
Podemos trabalhar com números, com palavras-chave e fórmulas
Ex: 1, 2n+0, 2, 3n-1, odd e even;
*/
li:nth-child(1) {
color: red;
background: blue;
}
li:nth-last-child(2) {
color: green;
background: red;
}
li:nth-last-child(3) {
color: green;
background: red;
}
div > p:nth-of-type(2) {
color: green;
padding: 1em;
}
div > p:nth-last-of-type(2) {
color: orange;
padding: 1em;
}
</style>
</head>
<body>
<article>
<p>Conteúdo aqui... Primeiro filho.</p>
<p>Conteúdo aqui...</p>
<p>Conteúdo aqui...</p>
</article>
<ol>
<li href="#">link</li>
<li href="#">link</li>
<li href="#">link</li>
<li href="#">link</li>
</ol>
<div>
<p>Conteúdo aqui...</p>
<p>Conteúdo aqui...</p>
</div>
<div>
<p>Conteúdo aqui...</p>
<p>Conteúdo aqui...</p>
</div>
</body>
</html>