-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path31MoreOnSelector.html
More file actions
47 lines (41 loc) · 1.07 KB
/
31MoreOnSelector.html
File metadata and controls
47 lines (41 loc) · 1.07 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>More On Selector</title>
<style>
h1 {
background-color: lightgrey;
text-align: center;
color: #c545d1;
font-family: cursive;
font-weight: bold;
}
div p {
/* anathi div ni andar jetla p 6 ama effect thase */
color: blue;
}
div>p {
/* div ni child ma jetla paragraph hase tya j effect karse */
/* baki andar andar hase to nay kare */
color: red;
}
div + p{
/* div patya pachi jetla paragraph aavta hase tya effect karse */
color: aqua;
}
</style>
</head>
<body>
<h1>More on selector</h1>
<div class="container">
<div class="row">
<p>Hello Friends</p>
</div>
<p>Hello dost</p>
</div>
<p>Hello mitra</p>
</body>
</html>