I have a div that houses an img and a title that sits below it. There is a hyperlink that wraps around this entire div. How can I make the text-link hover state show when I hover over the image? Here's the html so far:
<a href="#"><div id="box" class="image-hover">
<img src="images/image.jpg"></img><p class="title">Title goes here</p></div></a>
CSS:
.image-hover a {background-color: white;}
.image-hover a:hover {background-color: navy;}
.image-hover a:active {background-color: navy;}