Quiz on CSS selectors

Refer to the image and answer questions to test your understanding on CSS selectors.

1. How to select the h3 tag which has the content as 'DISNEY'?

#heading
h3
.heading

2. How to select all the list items?

li
#li
li:all

3. How to select all the p tags under the division id 'division2'?

p
#divison2, p
#division2 > p

4. How to select all the p tags under the division id 'division1'?

p
.para
#divison1, p

5. How to select every alternate p tag?

div:nth-child(2n+1)
nth-child(2n+1)
p:nth-child(2n+1)

6. How to select the image when the mouse is hovered?

img:hover
.hover
.hover-img

7. How to select the h4 tag to display the content 'Snow white'?

h3
h3 + h4
div > h4

8. How to select the content 'Mickey Mouse is the cutest character.' and 'Ariel'?

.class
p
p:first-child

9. How to select the content 'Minnie is cute' and 'Bella'?

p
p:nth-child(2)
p:second-child

10. How to select the li tag with the content 'Goofy'?

li
#disney > li
li:last-child