JSFiddle - React, Tailwind, and code Playground
HTML
<a href="#">
<span>This is underlined</span>
This isn't.
</a>
CSS
a:hover {
text-decoration: none
}
a:hover span {
text-decoration: underline
}
<a href="#">
<span>This is underlined</span>
This isn't.
</a>
a:hover {
text-decoration: none
}
a:hover span {
text-decoration: underline
}