Well, I've got div with 3 elements in it:
<div>
<img src="http://localhost/images/4.png" alt="alt 4" class="background">
<img src="http://localhost/images/4_icon.png" alt="alt 4" class="icon">
<p>
bla bla
</p>
</div>
and css such as:
.icon:hover ~ .background {
transform: scale(1.2)
}
but no idea why, it doesn't work.