VOOZH about

URL: https://www.geeksforgeeks.org/css/spectre-cursor-utilities/

⇱ Spectre Cursor utilities - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Spectre Cursor utilities

Last Updated : 23 Jul, 2025

Spectre Cursor utilities are spectre classes that specify the mouse cursor which is displayed when mouseover is performed by the user or while pointing at an element. In CSS, refer to the CSS cursor property for a better understanding

Spectre Cursor utility class:

  • c-hand: This class is used to make the cursor into a hand sign.
  • c-move: This class is used to make the cursor into a moving sign.
  • c-zoom-in: This class is used to make the cursor into a zoom-in (plus in magnifier) sign.
  • c-zoom-out: This class is used to make the cursor into a zoom-out (minus in magnifier) sign.
  • c-not-allowed: This class is used to make the cursor into the not-allowed sign.
  • c-auto: This class is used to make the cursor into the auto sign.

Syntax:

<div class="c-hand">
....
</div>

Example: Below example illustrate the Spectre Cursor utilities.

Output:

Reference:https://picturepan2.github.io/spectre/utilities/cursors.html

Comment