I want to add zoom effect for my div element, when the link section hovered.
.box {
width: 300px;
height: 300px;
background-color: green;
}
.link:hover ~ .box{
transform: scale(1.1);
}
<div class="box" src=""></div>
<a class="link" href="#">
<p class="projectTitles">link</p>
</a>
as you can see, it doesn't work.