Tailwind CSS v1.0 is here! Learn more →

Cursor

Utilities for controlling the cursor style when hovering over an element.

Work in progress!

More detailed documentation is coming soon, but in the meantime here's a quick class reference.

Class reference

Class Properties
.cursor-auto cursor: auto;
.cursor-default cursor: default;
.cursor-pointer cursor: pointer;
.cursor-wait cursor: wait;
.cursor-move cursor: move;
.cursor-not-allowed cursor: not-allowed;

Customizing

Responsive and State Variants

By default, only responsive variants are generated for cursor utilities.

You can control which variants are generated for the cursor utilities by modifying the cursor property in the modules section of your Tailwind config file.

For example, this config will also generate hover and focus variants:

{
// ...
modules: {
    // ...
-   cursor: ['responsive'],
+   cursor: ['responsive', 'hover', 'focus', 'active', 'group-hover'],
}
}

Disabling

If you don't plan to use the cursor utilities in your project, you can disable them entirely by setting the cursor property to false in the modules section of your config file:

{
// ...
modules: {
    // ...
-   cursor: ['responsive'],
+   cursor: false,
}
}