html,
<div id="first">
<a>Click here</a>
</div>
<div id=second">
second div content
</div>
css,
#first a:hover{
color:blue;
/*change color on hover */
#second{
background:blue;
}
}
In this scenario, when a user hovers over "Click here", I want to change the background color of the other element #second.
Can this be achieved using only css? Or do I need to use jquery or javascript events?