Which CSS selector applies to the bolded element(s) only?
#world{ ... }
World{ ... }
.world{ ... }
@world{ ... }
None of the above
P.a{ ... }
A{ ... }
A, ul{ ... }
#a{ ... }
None of the above
Li a{ ... }
Li.a{ ... }
Li, a{ ... }
Li-a{ ... }
None of the above
H1-.content{ ... }
H1#content{ ... }
.content h1{ ... }
#content h1{ ... }
None of the above
.menu#ul a{ ... }
Ul.menu li a{ ... }
#header .a{ ... }
Div a{ ... }
None of the above
@all{ ... }
*{ ... }
HTML{ ... }
#{ ... }
None of the above
Div a{ ... }
Div + a{ ... }
Div a p{ ... }
Div > a{ ... }
None of the above
[email protected]{ ... }
Input.submit{ ... }
Input.type=submit{ ... }
Input[type=submit]{ ... }
None of the above
A.active{ ... }
#content .a{ ... }
P a#active{ ... }
Div p a{ ... }
None of the above
.content h1, a{ ... }
#content h1+a{ ... }
#conten h1, #content a{ ... }
#content h1 a { ... }
None of the above
Wait!
Here's an interesting quiz for you.