E
E
eldar_web2015-11-09 16:56:47
css
eldar_web, 2015-11-09 16:56:47

How to :hover the parent to change the child element?

For example, there is a code:

<div>
 <span></span>
</div>

How to change span on div:hover?

Answer the question

In order to leave comments, you need to log in

1 answer(s)
D
Dru Dro, 2015-11-09
@eldar_web

div:hover span {/*стиль для всех span внутри div */
}

div:hover > span {/*стиль для всех span - прямых наследников div */
}

div:hover + span {/*стиль для первого span после div */
}

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question