CSS - Cursor

Cursor

The cursor property in CSS is used to specify the type of mouse pointer to display when placed over an element or area on the webpage.

Cursor Values

  • default
  • pointer
  • text
  • wait
  • help
  • progress
  • crosshair
  • move
  • url() - for other cursor types downloaded form the internet. Example: { cursor: url("cursor.cur"), default; }
note
NOTE:

If you are declaring a custom cursor, you must define a generic cursor at the end of the list; else the custom cursor might not display correctly.


ADVERTISEMENTS

LEARNING IS A CONTINOUS PROCESS - PRACTICE MAKES PERFECT