-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path14_Combinators selector.html
More file actions
88 lines (77 loc) · 2.07 KB
/
Copy path14_Combinators selector.html
File metadata and controls
88 lines (77 loc) · 2.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Combinators selector</title>
<link rel="stylesheet" href="style05.css">
</head>
<body>
<!-- <div>
<p>This is good</p>
<p>This is average</p>
<p>This is cool</p>
<p>This is so much cool</p>
</div>
<p>I am good at everything</p>
<p>I am not good at everything</p> -->
<!-- <div class="c1">
<p>This is good</p>
<p>This is average</p>
<p>This is cool</p>
<p>This is so much cool</p>
</div> -->
<!-- <div class="c1">
<p>This is good</p>
<p>This is average</p>
<p>This is cool</p>
<p>This is so much cool</p>
<b>
<p>India</p>
<p>Austrelia</p>
</b>
<div>
<b>
<h1>
<p>Hello this is much more cool</p>
</h1>
</b>
</div>
</div> -->
<!-- Child selector -->
<!-- <div>
<p>This is good</p>
<p>This is average</p>
<p>This is cool</p>
<p>This is so much cool</p>
</div> -->
<!-- <div>
<p>This is good</p>
<p>This is average</p>
<p>This is cool</p>
<p>This is so much cool</p>
<b>
<p>This is my scooty</p>
<p>This is my bike</p>
</b>
<p>So much popular</p>
<p>So much famous</p>
</div> -->
<!-- General sibling selector -->
<!-- <div>
<p>I am going to odisha</p>
<h2>Good evening to all</h2>
<h2>Good night to all</h2>
<h4>This is my heading</h4>
<h2>Going to sundargarh</h2>
<b>
<h2>Hii listen to me</h2>
</b>
</div>
<h2>Having a positive mind</h2> -->
<!-- adjacent sibling selector -->
<p>Listen to elders</p>
<h1>Hello are you okay</h1>
<h2>Yes i am okay</h2>
</body>
</html>