JSFiddle - React, Tailwind, and code Playground

by Jeremy Bolanos

HTML

<a href="#">Some <span>Link</span></a>

CSS

a {
  display: inline-flex;
  text-decoration: underline;
  color: green;
}
a > span {
  display: inline-block;
  text-decoration: none;
  padding-left: 0.5rem;
}