demo
I want to translate the first div
, when hovered.
But the tag span
covered by the second div
. I do not know why.
Two things are contributing to your problem:
z-index
is not a px
based number, MDN docs.
Update your z-index
to z-index:-90;
from z-index:-90px;
id
's cannot start with a number, see this answer for more details.
Update your div to id="div2"
from id="2div"