JSFiddle - React, Tailwind, and code Playground

by dikucher

HTML

<a href="">Text <span>4444</span></a>
<br>
<a class="correct" href=""><span>Text </span>4444</a>

CSS

a span {
    text-decoration:none;
}


.correct {
    text-decoration:none;
}
.correct span {
    text-decoration:underline;
}