CheatSheet
日本語 icon日本語English iconEnglish
チートシートとはカンニングペーパーのことです。それが転じて、本来覚えることをまとめておいたものです。
要点をすぐに参照できるようにまとめてみました。

CSS cursorプロパティ

エンジニアのためのWebチートシート

【図解付き】cursor: pointer以外にも、moveやgrabなどの知っておくと便利なcursorプロパティをチートシートにまとめてみました。

【頻出】cursorプロパティ

pointer

cursor: pointer;
cursor: pointer;

grab

cursor: grab;
cursor: grab;

grabbing

cursor: grabbing;
cursor: grabbing;

cell

cursor: cell;
cursor: cell;

col-resize

cursor: col-resize;
cursor: col-resize;

row-resize

cursor: row-resize;
cursor: row-resize;

【準頻出】cursorプロパティ

help

cursor: help;
cursor: help;

progress

cursor: progress;
cursor: progress;

wait

cursor: wait;
cursor: wait;

text

cursor: text;
cursor: text;

move

cursor: move;
cursor: move;

not-allowed

cursor: not-allowed;
cursor: not-allowed;

zoom-in

cursor: zoom-in;
cursor: zoom-in;

zoom-out

cursor: zoom-out;
cursor: zoom-out;

url

cursor: url(https://web-cheatsheet.com/cursor-url.png);
cursor: url;

【マニアック】cursorプロパティ

none

cursor: none;

context-menu

cursor: context-menu;
cursor: none;

crosshair

cursor: crosshair;
cursor: crosshair;

vertical-text

cursor: vertical-text;
cursor: vertical-text;

alias

cursor: alias;
cursor: alias;

copy

cursor: copy;
cursor: copy;

no-drop

cursor: no-drop;
cursor: no-drop;

all-scroll

cursor: all-scroll;
cursor: all-scroll;

n-resize

cursor: n-resize;
cursor: n-resize;

e-resize

cursor: e-resize;
cursor: e-resize;

s-resize

cursor: s-resize;
cursor: s-resize;

w-resize

cursor: w-resize;
cursor: w-resize;

ne-resize

cursor: ne-resize;
cursor: ne-resize;

nw-resize

cursor: nw-resize;
cursor: nw-resize;

se-resize

cursor: se-resize;
cursor: se-resize;

sw-resize

cursor: sw-resize;
cursor: sw-resize;

ew-resize

cursor: ew-resize;
cursor: ew-resize;

ns-resize

cursor: ns-resize;
cursor: ns-resize;

nesw-resize

cursor: nesw-resize;
cursor: nesw-resize;

nwse-resize

cursor: nwse-resize;
cursor: nwse-resize;