How to add an image as a cursor using CSS

How to add an image as a cursor using CSS?

Custom image as the cursor

You have to use the URL function along with the CSS cursor property to add a custom image as the cursor.

Use the url() function to add the path to the image and the recommended size of the image is 32px by 32px. And additionally, you have to add auto after specifying the image.

<style>
    .cursor{
        width: 200px;
        height: 200px;
        border: 3px solid #333333;
        cursor:url('./assets/cursor.svg'), auto;
    }
</style>

<div class="cursor"></div>
CSS custom image as a cursor