Is there a way how to apply z-index on a SVG path?
I have simple SVG arrow:
<svg class="arrow">
<path class="line" />
<path class="endpoint"/>
</svg>
If I use css to chnge z-index of the whole .arrow
everything works fine, but when I try to apply it only on .endpoint
it doesn't work.
Is there some solution or workaround for this?
Thank you very much.