Specifies the mouse cursor when pointer is over an element.
Class | Properties | |
---|---|---|
cursor-auto | cursor: auto; | |
cursor-pointer | cursor: pointer; | |
cursor-wait | cursor: wait; | |
cursor-move | cursor: 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>