JSFiddle - React, Tailwind, and code Playground
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;
}
<a href="#">
This is underlined
<span>
This isn't.
</span>
but this is.
</a>
a {
color: red;
}
a span{
text-decoration: underline;
color: purple;
}