Is there a way for me to use CSS to access the numbers (1 and 2 in this example) at the end of the paragraph's class attribute?
<p class="cooking-step-1"><br>
<!-- Second step ... --><br>
</p>
<p class="cooking-step-2"><br>
<!-- Second step ... --><br>
</p>
I know I can select these paragraphs using: p[class^="cooking-step-"]
But how can I include the paragraph number before the text inside it using the CSS content
property? Any suggestions on how to do this?