-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathexample07.html
52 lines (50 loc) · 1.09 KB
/
example07.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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>The next-sibling combinator (+)</title>
<style>
body {
width: fit-content;
}
h2, p {
margin: 16px;
}
h2 + p {
font-style: italic;
}
</style>
</head>
<body>
<h2>I'm a Heading</h2>
<p>
I'm an introductory paragraph.
</p>
<p>
I'm a regular paragraph.
</p>
<p>
I'm a regular paragraph.
</p>
<h2>I'm another Heading</h2>
<p>
I'm another introductory paragraph.
</p>
<p>
I'm another regular paragraph.
</p>
<p>
I'm another regular paragraph.
</p>
<h2>Yep, One More Heading</h2>
<p>
One more introductory paragraph.
</p>
<p>
One more regular paragraph.
</p>
<p>
Okay, that's enough.
</p>
</body>
</html>