JSFiddle - React, Tailwind, and code Playground

by Brad9aga

HTML

<a href="#" class="yes">
  <div class="text-yes">Hello</div>
  <div class="not">my friend !</div>
</a>

CSS

body {
  font-family: Roboto;
}
a{
  text-decoration: none;
  display: inline-block;
  outline:1px solid red;
  
}
.yes:hover .text-yes, .yes:active .text-yes{
	text-decoration: underline;
  
}