Separate each selector with a plus sign
Separate each selector with a comma
Separate each selector with a space
All of These
id
class
tag
both b) and c)
*test
#test
.test
test
article
html
demo
#demo
.demo
*demo
h1.hover
h1*hover
h1:hover
h1-hover
p h4 a { color: orange; }
p; h4; a { color: orange; }
p+a+h4 { color: orange; }
h4, a, p { color: orange; }
Seperate each selector with a star
p
p.style
p-style
.style
p.style span
p.style.span
p.style span*
none of the above
Hash
Plus
Dot
None
:selected
:link
:target
:enabled
Name
ID
Class
Tag
The universal selector
The Descendant Selector
The Class selector
The id selector
p.all{color: grey;}
p.all {color: #990000;}
all.p {color: #998877:)
p {color: grey;}
-webkit
-0-
web
-chrome
:visited
:hover
:active
Match A Specified Element
Select The Active Links
Are Used to Select All the Visited Links
Are Used to Define a Special State of An Element
Text
External CSS
Internal CSS
Inline CSS
None of these