CSS cursor size

1

It is possible to increase the size (width and height) from the CSS, for example

circle {
cursor:crosshair;
height: 200px;
}
    
asked by anonymous 09.12.2014 / 12:52

1 answer

1

Use a custom image:

.ponteiro_personalizado {
   cursor: url(images/cursor.png), auto;
}
    
11.12.2014 / 19:13