cursor
The cursor
CSS property sets the type of mouse cursor, if any, to show when the mouse pointer is over an element.
Syntax
/* Keyword value */ cursor: pointer; cursor: auto; /* URL, with a keyword fallback */ cursor: url(hand.cur), pointer; /* URL and coordinates, with a keyword fallback */ cursor: url(cursor1.png) 4 12, auto; cursor: url(cursor2.png) 2 2, pointer; /* Global values */ cursor: inherit; cursor: initial; cursor: revert; cursor: unset;
The cursor
property is specified as zero or more <url>
values, separated by commas, followed by a single mandatory keyword value. Each <url>
should point to an image file. The browser will try to load the first image specified, falling back to the next if it can't, and falling back to the keyword value if no images could be loaded (or if none were specified).
Each <url>
may be optionally followed by a pair of space-separated numbers, which represent <x><y>
coordinates. These will set the cursor's hotspot, relative to the top-left corner of the image.
For example, this specifies two images using <url>
values, providing <x><y>
coordinates for the second one, and falling back to the progress
keyword value if neither image can be loaded:
cursor: url(one.svg), url(two.svg) 5 5, progress;
Values
<url>
-
A
url(…)
or a comma separated listurl(…), url(…), …
, pointing to an image file. More than oneurl()
may be provided as fallbacks, in case some cursor image types are not supported. A non-URL fallback (one or more of the keyword values) must be at the end of the fallback list. See Using URL values for the cursor property for more details. -
<x>
<y>
-
Optional x- and y-coordinates. Two unitless nonnegative numbers less than 32.
- Keyword values
-
Move your mouse over values to see their live appearance in your browser:
Category CSS value Example Description General auto
The UA will determine the cursor to display based on the current context. E.g., equivalent to text
when hovering text.default
The platform-dependent default cursor. Typically an arrow. none
No cursor is rendered. Links & status context-menu
A context menu is available. help
Help information is available. pointer
The cursor is a pointer that indicates a link. Typically an image of a pointing hand. progress
The program is busy in the background, but the user can still interact with the interface (in contrast to wait
).wait
The program is busy, and the user can't interact with the interface (in contrast to progress
). Sometimes an image of an hourglass or a watch.Selection cell
The table cell or set of cells can be selected. crosshair
Cross cursor, often used to indicate selection in a bitmap. text
The text can be selected. Typically the shape of an I-beam. vertical-text
The vertical text can be selected. Typically the shape of a sideways I-beam. Drag & drop alias
An alias or shortcut is to be created. copy
Something is to be copied. move
Something is to be moved. no-drop
An item may not be dropped at the current location.
bug 275173: On Windows and Mac OS X,no-drop
is the same asnot-allowed
.not-allowed
The requested action will not be carried out. grab
Something can be grabbed (dragged to be moved). grabbing
Something is being grabbed (dragged to be moved). Resizing & scrolling all-scroll
Something can be scrolled in any direction (panned).
bug 275174: On Windows,all-scroll
is the same asmove
.col-resize
The item/column can be resized horizontally. Often rendered as arrows pointing left and right with a vertical bar separating them. row-resize
The item/row can be resized vertically. Often rendered as arrows pointing up and down with a horizontal bar separating them. n-resize
Some edge is to be moved. For example, the se-resize
cursor is used when the movement starts from the south-east corner of the box.
In some environments, an equivalent bidirectional resize cursor is shown. For example,n-resize
ands-resize
are the same asns-resize
.e-resize
s-resize
w-resize
ne-resize
nw-resize
se-resize
sw-resize
ew-resize
Bidirectional resize cursor. ns-resize
nesw-resize
nwse-resize
Zooming zoom-in
Something can be zoomed (magnified) in or out.
zoom-out
Usage notes
Although the specification does not define any size limitations for cursor
, individual user agents may choose to do so. Cursor changes using images which are outside the size range supported by the browser will generally just be ignored.
Check the Browser compatibility table for any notes on cursor size limits.
Formal definition
Initial value | auto |
---|---|
Applies to | all elements |
Inherited | yes |
Computed value | as specified, but with url() values made absolute |
Animation type | discrete |
Formal syntax
[ [ <url> [ <x> <y> ]? , ]* [ auto | default | none | context-menu | help | pointer | progress | wait | cell | crosshair | text | vertical-text | alias | copy | move | no-drop | not-allowed | e-resize | n-resize | ne-resize | nw-resize | s-resize | se-resize | sw-resize | w-resize | ew-resize | ns-resize | nesw-resize | nwse-resize | col-resize | row-resize | all-scroll | zoom-in | zoom-out | grab | grabbing ] ]
Examples
Setting cursor types
.foo { cursor: crosshair; } .bar { cursor: zoom-in; } /* A fallback keyword value is required when using a URL */ .baz { cursor: url("hyper.cur"), auto; }
Specifications
Browser compatibility
Desktop | Mobile | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | WebView Android | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | |
cursor |
1 |
12 |
1
Starting in Firefox 67, the maximum size allowed for custom cursors is 32x32 pixels due to cursors being misused by certain malicious sites.
|
4
In Internet Explorer 11, when
cursor is applied to an element and this element is underneath an open <select> menu and the user hovers over a <select> menu item that's on top of said element, the cursor for said element will be displayed rather than the <select> 's normal cursor. See bug 817822. |
7 |
1.2 |
No |
18 |
No |
14 |
1 |
1.0 |
alias |
1 |
12 |
1.5 |
10 |
10.6 |
3 |
No |
18 |
No |
14 |
1 |
1.0 |
all-scroll |
1 |
12 |
1.5 |
6 |
10.6 |
3 |
No |
18 |
No |
14 |
1 |
1.0 |
auto |
1 |
12 |
1 |
4 |
7 |
1.2 |
No |
18 |
No |
14 |
1 |
1.0 |
bidirectional_resize |
1 |
12 |
1.5 |
10 |
10.6 |
3 |
No |
18 |
No |
14 |
1 |
1.0 |
cell |
1 |
12 |
1.5 |
10 |
10.6 |
3 |
No |
18 |
No |
14 |
1 |
1.0 |
col-resize |
1 |
12 |
1.5 |
6 |
10.6 |
3 |
No |
18 |
No |
14 |
1 |
1.0 |
context-menu |
1
This cursor is only supported on macOS and Linux.
|
12 |
1.5
This cursor is only supported on macOS and Linux.
|
10 |
10.6 |
3 |
No |
18
This cursor is only supported on macOS and Linux.
|
No |
14
This cursor is only supported on macOS and Linux.
|
1 |
1.0
This cursor is only supported on macOS and Linux.
|
copy |
1 |
12 |
1.5 |
10 |
10.6 |
3 |
No |
18 |
No |
14 |
1 |
1.0 |
crosshair |
1 |
12 |
1 |
4 |
7 |
1.2 |
No |
18 |
No |
14 |
1 |
1.0 |
default |
1 |
12 |
1 |
4 |
7 |
1.2 |
No |
18 |
No |
14 |
1 |
1.0 |
grab |
68
Chrome also continues to support the prefixed versions.
1
Chrome 22 added Windows support.
|
14 |
27
1.5
|
No |
55
Opera also continues to support the prefixed versions.
15
Opera 22 added Windows support.
|
11
4
|
No |
68
Chrome also continues to support the prefixed versions.
18
Chrome 22 added Windows support.
|
No |
48
Opera also continues to support the prefixed versions.
14
Opera 22 added Windows support.
|
1 |
10.0
1.0
|
help |
1 |
12 |
1 |
4 |
7 |
1.2 |
No |
18 |
No |
14 |
1 |
1.0 |
inherit |
1 |
12 |
1 |
8 |
9 |
1.2 |
No |
18 |
No |
14 |
1 |
1.0 |
move |
1 |
12 |
1 |
4 |
7 |
1.2 |
No |
18 |
No |
14 |
1 |
1.0 |
no-drop |
1 |
12 |
1.5 |
6 |
10.6 |
3 |
No |
18 |
No |
14 |
1 |
1.0 |
none |
5 |
12 |
3 |
9 |
15 |
5 |
No |
18 |
No |
14 |
4.2 |
1.0 |
not-allowed |
1 |
12 |
1.5 |
6 |
10.6 |
3 |
No |
18 |
No |
14 |
1 |
1.0 |
pointer |
1 |
12 |
1 |
6 |
7 |
1.2 |
No |
18 |
No |
14 |
1 |
1.0 |
progress |
1 |
12 |
1 |
6 |
7 |
1.2 |
No |
18 |
No |
14 |
1 |
1.0 |
row-resize |
1 |
12 |
1.5 |
6 |
10.6 |
3 |
No |
18 |
No |
14 |
1 |
1.0 |
text |
1 |
12 |
1 |
4 |
7 |
1.2 |
No |
18 |
No |
14 |
1 |
1.0 |
unidirectional_resize |
1 |
12 |
1 |
4 |
7 |
1.2 |
No |
18 |
No |
14 |
1 |
1.0 |
url |
1 |
12 |
1.5
Firefox 4 added macOS support.
|
6 |
15 |
3 |
No |
18 |
No |
14 |
1 |
1.0 |
url_positioning_syntax |
1 |
79 |
1.5
Firefox 4 added macOS support.
|
No |
15 |
3 |
No |
18 |
No |
14 |
1 |
1.0 |
vertical-text |
1 |
12 |
1.5 |
No |
10.6 |
3 |
No |
18 |
No |
14 |
1 |
1.0 |
wait |
1 |
12 |
1 |
4 |
7 |
1.2 |
No |
18 |
No |
14 |
1 |
1.0 |
zoom |
37
1
|
12 |
24
1
|
No |
24
15-23
|
9
3
|
No |
37
18
|
No |
24
14-24
|
1 |
3.0
1.0
|
See also
© 2005–2021 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/CSS/cursor