I am stuck at Step 33 of the topic “Learn accessability by building a Quiz” in the CSS part:
This is the task:
To prevent unnecessary repetition, target the before
pseudo-element of the p
element, and give it a content
property of Question #
.
My current code:
p::before {
content: Question #;
}
The hint says:
You should use the p::before selector.
Can someone help me to identify the error?
Thank you in advance