DEV Community

AleZk90
AleZk90

Posted on

CSS Cursor pointer with SVG image

CSS Cursor pointer with SVG image

12

I'm trying to apply a custom cursor pointer with an SVG image but it's not working, instead if I use a png image everything is working fine.

Here's my code.

.container {
  /* not working one */
  cursor: url("/images/icon-cross.svg"), auto;
  /* working one */
  cursor: url("/images/icon-cross.png"), auto;
}

Is there…

Top comments (0)