JSFiddle - React, Tailwind, and code Playground

by Jeroen de Bruin

HTML

<a href="#">
    This is underlined
    <span>
        This isn't.
    </span>
    but this is.
</a>

CSS

a {
    color: red;
}
a span{
    text-decoration: underline;
    color: purple;
}