JSFiddle - React, Tailwind, and code Playground
HTML
<div>
feedback
<span class="question">- Was this post useful to you?</span>
</div>
CSS
div:not(:hover) span.question {
opacity: 0;
}
div:hover span.question {
opacity: 1;
}
<div>
feedback
<span class="question">- Was this post useful to you?</span>
</div>
div:not(:hover) span.question {
opacity: 0;
}
div:hover span.question {
opacity: 1;
}