Is there a way to create a link within a div and change the hover color to indicate it's a link? The challenge is that my div contains both an image and text in separate divs.
div {
:hover {
background-color: light cyan;
}
Currently, when I hover over the div with the mouse, the result is: https://i.sstatic.net/Y0XGN.png
https://i.sstatic.net/FP2w4.png
What I need is for the entire div to change color on hover. Can anyone provide a solution?