-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcursors.html
24 lines (23 loc) · 1.02 KB
/
cursors.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<h1></h1>
<p>(Hover over each line to see the cursor effect).</p>
<div>
<p style="cursor:auto">Cursor: "Auto"</p>
<p style="cursor:default">Cursor: "Default"</p>
<p style="cursor:text">Cursor: "Text"</p>
<p style="cursor:help">Cursor: "Help"</p>
<p style="cursor:pointer">Cursor: "Pointer"</p>
<p style="cursor:wait">Cursor: "Wait"</p>
<p style="cursor:crosshair">Cursor: "Crosshair"</p>
<p style="cursor:move">Cursor: "Move"</p>
<p style="cursor:smile">Cursor: "Smile"</p>
<p style="cursor:progress">Cursor: "Progress"</p>
<p style="cursor:e-resize">Cursor: "e-resize"</p>
<p style="cursor:ne-resize">Cursor: "ne-resize"</p>
<p style="cursor:nw-resize">Cursor: "nw-resize"</p>
<p style="cursor:n-resize">Cursor: "n-resize"</p>
<p style="cursor:se-resize">Cursor: "se-resize"</p>
<p style="cursor:sw-resize">Cursor: "sw-resize"</p>
<p style="cursor:s-resize">Cursor: "s-resize"</p>
<p style="cursor:w-resize">Cursor: "w-resize"</p>
</div>
<a src="https://www.w3schools.com/cssref/tryit.php?filename=trycss_cursor">Source. w3schools.com</a>