Problem Statement
Which pseudo-element inserts content before an element?
Explanation
`::before` is the correct modern syntax (double colon) for inserting generated content before an element. It requires `content:` property to work.
Code Solution
SolutionRead Only
h1::before { content: '👉 '; color: orange; }