1#Element {
2 cursor: pointer; /*When you point on this element, cursor will be
3 a pointer.*/
4}
5
6#Element {
7 cursor: default; /*Will make the cursor not point.*/
8}
1body {
2 /*(Cursor image must be 32*32 pixles)*/
3 cursor: url(CURSOR_URL), auto;
4}