14 Change the cursor
CSS allows you to change the cursor in newer browser. Unfortunately, this is implemented very differently across different browsers. IE 6 allows to display your own cursors. For designs that should work in different browsers, you should stick to the standard cursors. Safari currently has only flaky support for cursor styles. To change the cursor, it is sufficient to set a CSS property, not only on links, but on text or images too.
h1, p{
cursor: help;
}
<p>Click here to get help </p>
Example: CURSOR HELP
VALUES
cursor: auto = default value
cursor: default = platform independent cursor.
cursor: pointer = Pointer cursor.
cursor: crosshair = Crosshair cursor
cursor: hand = hand cursor
cursor: move = Cross for moving elements
cursor: e-resize = Arrow pointing east
cursor:ne -resize = Arrow pointing north-east
cursor: nw-resize = Arrow pointing north-west
cursor: n-resize = Arrow pointing north
cursor: se-resize = Arrow pointing south east
cursor: sw-resize = Arrow pointing south west
cursor: s-resize = Arrow pointing south
cursor: w-resize = Arrow pointing west
cursor: text = text caret
cursor: wait = wait cursor
cursor: help = help cursor
cursor: url = *.ico *.gif *.jpg URL of a cursor icon
This property should be used with care. It can be very confusing for users.


print


KILL IE6