I would like to know how to update image A when I hover over image B using only CSS, is it possible? if not how will I do that using only pure JavaScript (no library). But c
To update the background position on the inner element #hv when hovering the outer element #bg, you can:
#hv
#bg
See this Working Fiddle Example!
#bg:hover #hv { ... }