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>&reg;</sup><span class="supS">Continued</span></a><br>
<a href="blah.com"><span class="supS">AT&amp;T Uverse</span><sup>&reg;</sup></a>

CSS

a{
text-decoration:none;
}
a:hover .supS{
  text-decoration:underline;
  display:inline-block;
}