CURSOR Property In CSS
cursor Property in CSS
cursor property Declares the type of cursor to be displayed.
Possible Value:
URL values, and the following prefefined values: auto crosshair default pointer move e-resize ne-resize nw-resize n-resize se-resize sw-resize s-resize w-resize text wait help
Examplediv { cursor:crosshair; }
div { cusrsor:url(image.csr); }
div { cusrsor:url(image.csr), pointer; }