-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathexample05.html
48 lines (48 loc) · 1.43 KB
/
example05.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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>The child combinator (>)</title>
<style>
/* * {
margin: 0;
padding: 0;
box-sizing: border-box;
} */
body {
width: fit-content;
}
aside, div {
margin: 8px;
padding: 8px;
}
h4 {
margin-bottom: 0;
}
aside > h4 {
color: green;
border-top: 3px solid black;
border-bottom: 5px double black;
padding: 4px 0;
text-transform: uppercase;
}
</style>
</head>
<body>
<aside>
<h4>Links:</h4>
<div>
<a href="example01.html">The type selector</a><br>
<a href="example02.html">The class selector</a><br>
<a href="example03.html">The id selector</a><br>
<a href="example04.html">The descendant selector</a>
</div>
<h4>See Also:</h4>
<div>
<a href="../bk04ch06/example02.html">querySelectorAll()</a><br>
<a href="../bk04ch06/example03.html">classList.add()</a><br>
<a href="../bk04ch06/example04.html">getElementById())</a>
</div>
</aside>
</body>
</html>