CSS: On Hover - How can I change css attributes of a selector's child? -
i have these smaller banners want change of styling attributes inside of "a" tag.
<a href="#"> <h2>heading</h2> <p class="service-sub">some text</p> <img src="path" /> </a>
what want change out styling in p.service-hub. here 2 methods i've tried, no avail...
method 1: .service-hub *:hover method 2: .service-hub:hover
is possible? because hover event first trigged tag, recognize hover on p.service-hub?
did try this?
a:hover .service-sub
Comments
Post a Comment