Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS 

Cursor styles used in CSS

Source: Custom CSS Cursors [javascriptkit.com]
   1  
   2  cursor: default;
   3  cursor: hand;
   4  cursor: pointer;
   5  cursor: pointer; cursor: hand;
   6  cursor: crosshair;
   7  cursor: text;
   8  cursor: wait;
   9  cursor: help;
  10  cursor: move;
  11  cursor: e-resize;
  12  cursor: ne-resize;
  13  cursor: nw-resize;
  14  cursor: n-resize;
  15  cursor: se-resize;
  16  cursor: sw-resize;
  17  cursor: s-resize;
  18  cursor: w-resize;
  19  cursor: progress;
  20  cursor: all-scroll;
  21  cursor: col-resize;
  22  cursor: no-drop;
  23  cursor: not-allowed;
  24  cursor: row-resize;
  25  cursor: url(mycursor.cur); /* Note: Only .cur and .ani file types are supported as of IE6. */
  26  cursor: vertical-text;
« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS