JSFiddle - React, Tailwind, and code Playground

by Daniel Tan

HTML

<div>
    feedback
    <span class="question">- Was this post useful to you?</span>
</div>

CSS

div > span.question {
    visibility: hidden;
}
div:hover > span.question {
    visibility: visible;
}