Cursor

Specifies the mouse cursor when pointer is over an element.

ClassProperties
cursor-autocursor: auto;
cursor-pointercursor: pointer;
cursor-waitcursor: wait;
cursor-movecursor: move;
auto
pointer
wait
move
<div class="flex align-items-center justify-content-center">
    <div class="cursor-auto flex align-items-center justify-content-center border-round bg-primary p-3 m-3 font-bold">auto</div>
    <div class="cursor-pointer flex align-items-center justify-content-center border-round bg-primary p-3 m-3 font-bold">pointer</div>
    <div class="cursor-wait flex align-items-center justify-content-center border-round bg-primary p-3 m-3 font-bold">wait</div>
    <div class="cursor-move flex align-items-center justify-content-center border-round bg-primary p-3 m-3 font-bold">move</div>
</div>