La proprietà cursor cambia l aspetto del puntatore del mouse.
Cursori comuni
.pointer { cursor: pointer; } /* Mano, link cliccabile */
.default { cursor: default; } /* Freccia standard */
.text { cursor: text; } /* I-beam per testo */
.move { cursor: move; } /* Croce di movimento */
.not-allowed { cursor: not-allowed; } /* Cerchio barrato */
.wait { cursor: wait; } /* Clessidra/spinner */
.help { cursor: help; } /* Punto interrogativo */
.crosshair { cursor: crosshair; } /* Mirino */
.grab { cursor: grab; } /* Mano aperta */
.grabbing { cursor: grabbing; } /* Mano che afferra */Cursore personalizzato
.custom {
cursor: url("cursor.png"), auto;
}