JSFiddle - React, Tailwind, and code Playground

Mkml example code for underline an ::before.

by nilloc

HTML

<div class="underline">test underline</div>

CSS

.underline{
  text-decoration-line:underline;
}

.underline::before{
  content:"hello ";
}