files/en-us/web/css/reference/properties/cursor/index.md
The cursor CSS property sets the mouse cursor, if any, to show when the mouse pointer is over an element.
The cursor setting should inform users of the mouse operations that can be performed at the current location, including: text selection, activating help or context menus, copying content, resizing tables, and so on. You can specify either the type of cursor using a keyword, or load a specific icon to use (with optional fallback images and mandatory keyword as a final fallback).
{{InteractiveExample("CSS Demo: cursor")}}
cursor: pointer;
cursor: help;
cursor: wait;
cursor: crosshair;
cursor: not-allowed;
cursor: zoom-in;
<section class="default-example container" id="default-example">
<div id="example-element">
Move over this element to see the cursor style.
</div>
</section>
#example-element {
display: flex;
background-color: #1766aa;
color: white;
height: 180px;
width: 360px;
justify-content: center;
align-items: center;
font-size: 14pt;
padding: 5px;
}
/* Keyword value */
cursor: auto;
cursor: pointer;
/* … */
cursor: zoom-out;
/* URL with mandatory keyword fallback */
cursor: url("hand.cur"), pointer;
/* URL and coordinates, with mandatory keyword fallback */
cursor:
url("cursor_1.png") 4 12,
auto;
cursor:
url("cursor_2.png") 2 2,
pointer;
/* URLs and fallback URLs (some with coordinates), with mandatory keyword fallback */
cursor:
url("cursor_1.svg") 4 5,
url("cursor_2.svg"),
/* …, */ url("cursor_n.cur") 5 5,
progress;
/* Global values */
cursor: inherit;
cursor: initial;
cursor: revert;
cursor: revert-layer;
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 set the <x> and <y> coordinates of the cursor's hotspot relative to the top-left corner of the image.
<url> {{optional_inline}}
url() or a comma separated list url(), url(), …, pointing to an image file.
More than one {{cssxref("url_value", "<url>")}} 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.<x>, <y> {{optional_inline}}
: Optional x- and y-coordinates indicating the cursor hotspot; the precise position within the cursor that is being pointed to.
The numbers are in units of image pixels.
They are relative to the top left corner of the image, which corresponds to 0 0, and are clamped within the boundaries of the cursor image.
If these values are not specified, they may be read from the file itself, and will otherwise default to the top-left corner of the image.
keyword
: A keyword value must be specified, indicating either the type of cursor to use, or the fallback cursor to use if all specified icons fail to load.
The available keywords are listed in the table below. Other than none, which means no cursor, there is an image showing how the cursors used to be rendered. You can hover your mouse over the table rows to see the effect of the different cursor keyword values on your browser today.
</td>
<td>
An item may not be dropped at the current location.
<a href="https://bugzil.la/275173">Firefox bug 275173</a>: On Windows and macOS, <code>no-drop</code> is the same as <code>not-allowed</code>. </td> </tr> <tr style="cursor: not-allowed"> <td><code>not-allowed</code></td> <td></td> <td>The requested action will not be carried out.</td> </tr> <tr style="cursor: grab"> <td><code>grab</code></td> <td></td> <td>Something can be grabbed (dragged to be moved).</td> </tr> <tr style="cursor: grabbing"> <td><code>grabbing</code></td> <td></td> <td>Something is being grabbed (dragged to be moved).</td> </tr> <tr style="cursor: all-scroll"> <th rowspan="15" scope="row" style="cursor: auto"> Resizing & scrolling </th> <td><code>all-scroll</code></td> <td></td> <td> Something can be scrolled in any direction (panned). <a href="https://bugzil.la/275174">Firefox bug 275174</a>: On Windows, <code>all-scroll</code> is the same as <code>move</code>. </td> </tr> <tr style="cursor: col-resize"> <td><code>col-resize</code></td> <td></td> <td> The item/column can be resized horizontally. Often rendered as arrows pointing left and right with a vertical bar separating them. </td> </tr> <tr style="cursor: row-resize"> <td><code>row-resize</code></td> <td></td> <td> The item/row can be resized vertically. Often rendered as arrows pointing up and down with a horizontal bar separating them. </td> </tr> <tr style="cursor: n-resize"> <td><code>n-resize</code></td> <td>
</td>
<td rowspan="8" style="cursor: auto">
Some edge is to be moved. For example, the <code>se-resize</code> cursor is used when the movement starts from the <em>south-east</em> corner of the box.
In some environments, an equivalent bidirectional resize cursor is shown.
For example, <code>n-resize</code> and <code>s-resize</code> are the same as <code>ns-resize</code>.
</td>
</tr>
<tr style="cursor: e-resize">
<td><code>e-resize</code></td>
<td>
</td>
</tr>
<tr style="cursor: s-resize">
<td><code>s-resize</code></td>
<td>
</td>
</tr>
<tr style="cursor: w-resize">
<td><code>w-resize</code></td>
<td>
</td>
</tr>
<tr style="cursor: ne-resize">
<td><code>ne-resize</code></td>
<td>
</td>
</tr>
<tr style="cursor: nw-resize">
<td><code>nw-resize</code></td>
<td>
</td>
</tr>
<tr style="cursor: se-resize">
<td><code>se-resize</code></td>
<td>
</td>
</tr>
<tr style="cursor: sw-resize">
<td><code>sw-resize</code></td>
<td>
</td>
</tr>
<tr style="cursor: ew-resize">
<td><code>ew-resize</code></td>
<td></td>
<td rowspan="4" style="cursor: auto">Bidirectional resize cursor.</td>
</tr>
<tr style="cursor: ns-resize">
<td><code>ns-resize</code></td>
<td></td>
</tr>
<tr style="cursor: nesw-resize">
<td><code>nesw-resize</code></td>
<td></td>
</tr>
<tr style="cursor: nwse-resize">
<td><code>nwse-resize</code></td>
<td></td>
</tr>
<tr style="cursor: zoom-in">
<th rowspan="2" scope="row" style="cursor: auto">Zooming</th>
<td><code>zoom-in</code></td>
<td></td>
<td rowspan="2" style="cursor: auto">
<p>Something can be zoomed (magnified) in or out.</p>
</td>
</tr>
<tr style="cursor: zoom-out">
<td><code>zoom-out</code></td>
<td></td>
</tr>
</tbody>
</table>
{{cssinfo}}
{{csssyntax}}
While the specification does not limit the cursor image size, {{Glossary("user agent", "user agents")}} commonly restrict them to avoid potential misuse.
For example, on Firefox and Chromium cursor images are restricted to 128x128 pixels by default, but it is recommended to limit the cursor image size to 32x32 pixels. Cursor changes using images that are larger than the user-agent maximum supported size will generally just be ignored.
User agents are required by the specification to support PNG files, SVG v1.1 files in secure static mode that contain a natural size, and any other non-animated image file formats that they support for images in other properties.
Desktop browsers also broadly support the .cur file format.
The specification further indicates that user agents should also support SVG v1.1 files in secure animated mode that contain a natural size, along with any other animated images file formats they support for images in other properties. User agents may support both static and animated SVG images that do not contain a natural size.
iPadOS supports pointer devices like trackpads and mouses. By default, the iPad cursor is displayed as a circle, and the only supported value that will change an appearance of the pointer is text.
Cursor changes that intersect toolbar areas are commonly blocked to avoid spoofing.
.foo {
cursor: crosshair;
}
.bar {
cursor: zoom-in;
}
/* A fallback keyword value is required when using a URL */
.baz {
cursor: url("hyper.cur"), auto;
}
{{Specifications}}
{{Compat}}