I'm puzzled as to why the code below works with other tags but not with images:
// HTML
<img src="https://via.placeholder.com/80x80" alt="image">
<div>lorem ipsum</div>
// CSS
img:hover div {
color: red;
}
Could someone please explain why it's not working and how I can troubleshoot it?
Thank you