JSFiddle - React, Tailwind, and code Playground

HTML

<input id="x" type="text">
<a href="https://google.com">Tag A</a>

CSS

a {
  display: none;
  color: red;
}
#x:hover + a{
  display: block;
}