I'm having some trouble translating an SVG graphic in the y-axis using CSS transforms. The translation itself is working fine:
transform: translate3d(0, -100px, 0);
However, when I move the graphic 100px up in the Y direction, it ends up behind its parent div. I've attempted adjusting the z-index of different elements, but I can't seem to get the SVG graphic to display in front.
Here are images to illustrate my issue:
Before the translate
:
transform: translate3d(0, -100px, 0);