-
Notifications
You must be signed in to change notification settings - Fork 0
/
16_targeted_selectors.html
106 lines (94 loc) · 2.02 KB
/
16_targeted_selectors.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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Targeted Selectors</title>
<style>
.box-1, .box-2, .box-3 {
background: #f4f4f4;
border: black solid 2px;
margin-bottom: 10px;
}
/* Direct Children */
div > p {
background: #ddd;
}
.box-2 > p {
color: lightcoral;
}
/* Directly after (next:sibling) */
div + p {
background: #333333;
color: #fff;
}
/* Directly all sibling */
section ~ p {
background: #333333;
color: #fff;
}
/* By attribute */
a[target] {
background: yellowgreen;
color: white;
}
/* By attribute comparing */
a[target='_blank'] {
background: yellow;
color: white;
}
</style>
</head>
<body>
<div class="box-1">
<p>Lorem ipsum dolor sit amet.</p>
<ul>
<li>Item 1</li>
<li><p>Item 2</p></li>
<li>Item 3</li>
</ul>
<p>Lorem ipsum dolor sit amet.</p>
</div>
<p>Lorem ipsum dolor sit amet.</p>
<p>Lorem ipsum dolor sit amet.</p>
<a href="">Page 1</a>
<a href="" target="">Page 2</a>
<a href="" target="_blank">Page 3</a>
<br>
<div class="box-2">
<p>
Paragraph 1
<div>
<p>
Paragraph 1.1
<div>
<p>Paragraph 1.1.1</p>
</div>
</p>
</div>
</p>
<p>
Paragraph 2
<p>
<p>
Paragraph 2.1
<p>
Paragraph 2.1.1
</p>
</p>
</p>
</p>
<div>
<p>Paragraph 3</p>
</div>
</div>
<div class="box-3">
<p>Lorem ipsum dolor sit amet.</p>
<section>
Sibling sample
</section>
<p>Lorem ipsum dolor sit amet.</p>
<p>Lorem ipsum dolor sit amet.</p>
</div>
</body>
</html>