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