Hey there, I'm interested in playing around with HTML and CSS while learning. I have a question: is it possible to add an image to a checkbox when it's hovered over? Just to be clear, I only want the image to appear when the checkbox is being hovered over, not clicked. For example, I'd like to add a semi-transparent checkmark to the checkbox when it's hovered, indicating that it will appear fully when clicked. Here's what my checkbox looks like:
<div class="checkbox">
<label><input type="checkbox" value="" />Example</label>
</div>