-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadvselectors.html
114 lines (102 loc) · 2.55 KB
/
advselectors.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
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
<!doctype html>
<html class="no-js" lang="en">
<head>
<meta charset="utf-8" />
<title>Code Academy Advanced Selectors Demo</title>
<link rel="stylesheet" href="advselectors.css" />
</head>
<body id="quiz">
<header>
ADV HTML/CSS Selectors Quiz
</header>
<section>
<ol class="questions-list">
<li class="question">
<h4>How does a descendant selector work?</h4>
<ol class="choices">
<li class="answer">
<p>Descendant selectors match elements towards the end of the page.</p>
</li>
<li class="answer">
<p>Descendant selectors don't match any elements.</p>
</li>
<li class="answer">
<p>Descendant selectors match sibling selectors.</p>
</li>
<li class="answer">
<p>Descendant selectors match elements nested inside other elements.</p>
</li>
</ol>
</li>
<li class="question">
<h4>Which of the following selectors will select anchor elements that the user's cursor is over?</h4>
<ol class="choices">
<li class="answer">
<p>a:active</p>
</li>
<li class="answer">
<p>a:special</p>
</li>
<li class="answer">
<p>a:hover</p>
</li>
<li class="answer">
<p>hyperlink:ref</p>
</li>
</ol>
</li>
<li class="question">
<h4>What symbol is the universal selector?</h4>
<ol class="choices">
<li class="answer">
<p>~</p>
</li>
<li class="answer">
<p>=</p>
</li>
<li class="answer">
<p>#</p>
</li>
<li class="answer">
<p>*</p>
</li>
</ol>
</li>
<li class="question">
<h4>Which selector matches elements immediately preceded by a specified sibling element?</h4>
<ol class="choices">
<li class="answer">
<p>The code selector.</p>
</li>
<li class="answer">
<p>The sibling selector.</p>
</li>
<li class="answer">
<p>The adjacent selector.</p>
</li>
<li class="answer">
<p>The preface selector.</p>
</li>
</ol>
</li>
<li class="question">
<h4>Which of the following will select this ancor tag: <pre><code><a data="the-correct-answer"></a></code></pre>?</h4>
<ol class="choices">
<li class="answer">
<p>a[data<strong>|</strong>="correct"]</p>
</li>
<li class="answer">
<p>a[data<strong>^</strong>="correct"]</p>
</li>
<li class="answer">
<p>a[data<strong>$</strong>="correct"]</p>
</li>
<li class="answer">
<p>a[data<strong>~</strong>="correct"]</p>
</li>
</ol>
</li>
</ol>
</section>
</body>
</html>