JSFiddle - React, Tailwind, and code Playground

by mpsingh2003

HTML

<div>
    <p>Intro</p>
    <p>Binding Angular</p>
    <p>Directives</p>
</div>

CSS

div{
    counter-reset: section;
}
div p:before {
    counter-increment: section;
    content: "Section " counter(section) ": ";
}