JSFiddle - React, Tailwind, and code Playground

by Brad9aga

HTML

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

CSS

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

.yes:hover .not{
    text-decoration: line-through;
    color: red;
}

.yes:hover span{
  text-decoration:underline;
}