-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path1_selector.css
57 lines (48 loc) · 835 Bytes
/
1_selector.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
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
/* tag selector */
p {
color: white;
background-color: red;
}
/* class selector */
.student {
color: black;
background-color: yellow;
}
/* id selector */
#caca {
color: white;
background-color: green;
}
/* attribute selector */
a[href="abc.com"] {
color: blue;
background-color: yellow;
}
a[href="xyz.id"] {
color: green;
background-color:gray;
}
/* grouping */
b, i, ins {
color: lightpink;
background-color: magenta;
}
/* descendant selector */
header h3, header p {
color: maroon;
background-color: yellowgreen;
}
/* child selector */
article > p {
color: red;
background-color: lightskyblue;
}
article > main > p {
color: yellow;
background-color: brown;
}
/* adjacent selector */
h6 + small + small {
color: gold;
background-color: indigo;
}