cursor

Các tiện ích để kiểm soát kiểu con trỏ khi di chuột qua một phần tử.

ClassStyles
cursor-auto
cursor: auto;
cursor-default
cursor: default;
cursor-pointer
cursor: pointer;
cursor-wait
cursor: wait;
cursor-text
cursor: text;
cursor-move
cursor: move;
cursor-help
cursor: help;
cursor-not-allowed
cursor: not-allowed;
cursor-none
cursor: none;
cursor-context-menu
cursor: context-menu;

Ví dụ

Ví dụ cơ bản

Sử dụng các tiện ích như cursor-pointercursor-grab để kiểm soát con trỏ nào được hiển thị khi di chuột qua một phần tử:

Di chuột qua từng nút để thấy con trỏ thay đổi

<button class="cursor-pointer ...">Submit</button><button class="cursor-progress ...">Saving...</button><button class="cursor-not-allowed ..." disabled>Confirm</button>

Sử dụng giá trị tùy chỉnh

Use the cursor-[<value>] syntax to set the cursor based on a completely custom value:

<button class="cursor-[url(hand.cur),_pointer] ...">  <!-- ... --></button>

For CSS variables, you can also use the cursor-(<custom-property>) syntax:

<button class="cursor-(--my-cursor) ...">  <!-- ... --></button>

This is just a shorthand for cursor-[var(<custom-property>)] that adds the var() function for you automatically.

Responsive design

Prefix a cursor utility with a breakpoint variant like md: to only apply the utility at medium screen sizes and above:

<button class="cursor-not-allowed md:cursor-auto ...">  <!-- ... --></button>

Learn more about using variants in the variants documentation.

Copyright © 2025 Tailwind Labs Inc.·Chính sách thương hiệu