Although the cursor property accepts x and y values, they are not used for the background position, but rather for the coordinates of the cursor access point
This is the syntax for the cursor property: (see mozilla )
cursor: [<uri> [<x> <y>]?,]* keyword
For example:
.foo { cursor: auto; cursor: url(cursor1.png) 4 12, auto; }
The example sets the access point to a pixel at (4,12) from the top left (0,0).
Danield
source share