0

jsfiddle.net/pxojrb1o/

Hello,

I'm trying to make the 'retro products' text underline when you hover over the green picture. If I put the green picture in the h2 tag, it misaligns. can anybody help?

user3760941
  • 518
  • 5
  • 19

1 Answers1

1

The HTML: I added a class to the h2

<h2 class="products"><a href="products.html">retro products</a></h2>

The CSS

.home-featured-class:hover .products {
    text-decoration: underline;
}

http://jsfiddle.net/pxojrb1o/3/

For more information see this thread: How to affect other elements when a div is hovered

Community
  • 1
  • 1
AndrewH
  • 370
  • 8
  • 25