JSFiddle - React, Tailwind, and code Playground
by Sunny Hassan
HTML
<!-- If you need to have registerd trademark NOT underline on hover, here is an example -->
<a href="blah.com"><span class="supS">Name title</span><sup>®</sup><span class="supS">Continued</span></a><br>
<a href="blah.com"><span class="supS">AT&T Uverse</span><sup>®</sup></a>
CSS
a{
text-decoration:none;
}
a:hover .supS{
text-decoration:underline;
display:inline-block;
}