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

Popular posts from this blog

c# - How Configure Devart dotConnect for SQLite Code First? -

java - Copying object fields -

c++ - Clear the memory after returning a vector in a function -