4umi.com/web/css/cursor

Cursor values

Useful CSS

The mouse pointer, or more formally the icon indicating the spatial position on the screen canvas of whichever pointing device the operating system offers, also known as the cursor, can be manipulated to give special meaning to an element. The syntax is no different than changing the colour. The user experience may however be significantly distinctive and interactive, since the effect is only apparent when the mouse is actually over the element. The following paragraph illustrates this.

 
  <p style=" background: gold; cursor: help; ">
    Try me!
  </p>
 

The CSS2 Specification
n/a auto   hand default
text text hand pointer
wait wait w-resize progress
move move crosshair crosshair
help help n/a inherit
n-resize n-resize ne-resize ne-resize
e-resize e-resize se-resize se-resize
s-resize s-resize sw-resize sw-resize
w-resize w-resize nw-resize nw-resize
w-resize url(...)    

The CSS2 Specification defines 19 possible values for the cursor property. They are listed in the table on the right, and are supported in browsers from version IE 4.0, Netscape 6.0, Opera 7.0, Mozilla 1.0 and Firefox 1.0. IE6 and all other browsers render the resize icons as two-sided arrows, but the example illustrations are from IE5.5.

Notes

Browser additions