-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcss_selectors.html
More file actions
106 lines (87 loc) · 2.28 KB
/
css_selectors.html
File metadata and controls
106 lines (87 loc) · 2.28 KB
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>Document</title>
<style>
#mainbox {
background-color: yellow;
border: 2px solid red;
}
.mainheader {
border: 2px solid black;
}
span {
background-color: aqua;
}
div>span {
/* padding: 10px; */
/* this is for direct child */
}
div span {
/* padding: 10px; */
/* any span inside div */
}
* {
margin: 0;
padding: 0;
/* universal selector */
}
/* pseudo selectors */
a:visited {
background-color: red;
}
a:active {
background-color: blue;
}
a:hover {
background-color: white;
}
a:link {
background-color: green;
}
p:first-child {
/* where p is the first child */
}
p:last-child {
/* where p is the last child */
}
p:nth-child(odd) {
/* where p is odd */
background-color: blue;
}
p:nth-child(even) {
background-color: red;
/* where p is even */
}
</style>
</head>
<body>
<div>
<p>i am p1</p>
<p>i am p2</p>
<p>i am p3</p>
<p>i am p4</p>
<p>i am p5</p>
<p>i am p6</p>
</div>
<div id="mainbox">
<span>Lorem ipsum, dolor sit amet consectetur adipisicing elit. Consequatur voluptas quas aut reprehenderit
minima in, nihil nemo soluta impedit itaque.</span>
</div>
<div class="mainheader">
<p>Lorem ipsum, dolor sit amet consectetur adipisicing elit. Odit, at. Nihil fugit voluptas vero assumenda,
laboriosam necessitatibus aliquid praesentium quidem eligendi ut consequuntur facilis dicta cum repellendus
maiores. Quod, ipsa.</p>
</div>
<div class="mainheader">
<ul>
<li>ali</li>
<li>rehman</li>
<li>hamza</li>
</ul>
</div>
<a href="https://www.google.com">go to google</a>
</body>
</html>