Siksha Sarovar

Siksha Sarovar (sikshasarovar.com) is a free educational web application that helps students in India learn programming and prepare for academic and competitive exams. The platform offers structured coding courses (C, C++, Python, Java, HTML, CSS, PHP, Power BI, AI, Machine Learning, Data Science), complete university curriculum notes for BCA/MCA students with previous year question papers, Class 10 and Class 12 CBSE/HBSE school notes, and dedicated preparation material for SSC, UPSC, Banking, Railway and other government exams. Browsing the site is completely free and requires no account. Users may optionally sign in with Google solely to save their learning progress, quiz scores and personal preferences across devices.

Privacy Policy | Terms of Service | Contact Siksha Sarovar | About Siksha Sarovar

v4.0.9 · PWA
Siksha Sarovar logo
Siksha Sarovar
Your Learning Universe

Siksha Sarovar is a free e-learning platform for coding courses, BCA university notes and competitive exam preparation. Optional Google sign-in saves your learning progress across devices.

Initializing knowledge base…
Compiling modules 0%

16. CSS - Cursors

Lesson 16 of 34 in the free CSS Customization: Zero to Hero notes on Siksha Sarovar, written by Rohit Jangra.

CSS Cursors

The cursor property specifies the type of cursor to be displayed when pointing on an element.

Common Cursor Values

ValueDescription
aliasThe cursor indicates an alias of something is to be created
all-scrollThe cursor indicates that something can be scrolled in any direction
autoDefault. The browser sets a cursor
cellThe cursor indicates that a cell (or set of cells) may be selected
context-menuThe cursor indicates that a context-menu is available
col-resizeThe cursor indicates that the column can be resized horizontally
copyThe cursor indicates something is to be copied
crosshairThe cursor render as a crosshair
defaultThe default cursor (typically an arrow)
e-resizeThe cursor indicates that an edge of a box is to be moved to the right (east)
grabThe cursor indicates that something can be grabbed
grabbingThe cursor indicates that something is being grabbed
helpThe cursor indicates that help is available (often a question mark or a balloon)
moveThe cursor indicates something is to be moved
pointerThe cursor is a pointer and indicates a link
progressThe cursor indicates that the program is busy (in progress)
textThe cursor indicates text that may be selected (typically an I-beam)
waitThe cursor indicates that the program is busy (often a watch or an hourglass)
zoom-inThe cursor indicates that something can be zoomed in
zoom-outThe cursor indicates that something can be zoomed out

Example

span.help {
  cursor: help;
}
span.wait {
  cursor: wait;
}