Which CSS3 code fragment uses a pseudo-element?

A.
p: : first-letter {font-weight: bold;}
B.
div>p {font-weight: bold;}
C.
p. first-letter {font-weight: bold;}
D.
div+p {font-weight: bold;}
Explanation:
http://www.html5code.nl/css3-tutorials/css3-tutorial-css3-selectors/
C is correct.
1
17
if p::first-letter >> then u r right , but this is not what mentioned 🙂
0
0
A is correct
https://www.w3schools.com/css/css_pseudo_elements.asp
18
0