I have actually a structure like this.
<div class="container">
<ul>
<li>
<img>
</li>
</ul>
</div>
There is always a background image for the main container. What I want to achieve is to change the background image of the container when I hover the mouse on the image in the list. And the background-image should be the one in the list.
and when the mouse is away, the background image should be the original (the one at the beginning).
Is it possible to do it with css only? or javascript?
Thanks.