-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathexample06.html
38 lines (38 loc) · 999 Bytes
/
example06.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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>The subsequent-sibling combinator (~)</title>
<style>
body {
width: fit-content;
}
h2, h3, ul {
margin: 16px;
}
h2 ~ ul {
background: lightpink;
border: 5px outset crimson;
list-style-type: square;
padding: 8px 20px;
}
</style>
</head>
<body>
<h2>Selectors Cheat Sheet</h2>
<h3>Standard:</h3>
<ul>
<li>Type selector</li>
<li>Class selector (.)</li>
<li>Id selector (#)</li>
<li>Universal selector (*)</li>
</ul>
<h3>Combinators:</h3>
<ul>
<li>Descendant ( )</li>
<li>Child (>)</li>
<li>Subsequent-sibling (~)</li>
<li>Next-sibling (+)</li>
</ul>
</body>
</html>