JSFiddle - React, Tailwind, and code Playground

HTML

<ul>
<li>first</li>
<li>second</li>
<li>third</li>
</ul>

CSS

li::before
{
  content: "<inserted>";
  margin-right: 2px;
}

li:first-of-type::before
{
  content: none;
}

}