Hi,
I have several image tags overlapping using css and am able to use hover to make the one selected move to the top of he pile.
#gallery img{
float: left;
width: 250px;
height: 250px;
position: relative;
}
#gallery img:nth-child(2) {
left: -200px;
}
#gallery img:hover{
z-index: 10;
}
I am unable to make the hovering item stay on top of the pile img:active
does not work.
If i add anchor tags around the image tags the positioning does not work.
I am not sure what to do.