CSS cursor属性值一览表

p#auto
02
03     cursor: auto;
04 }
05   
06 p#crosshair
07
08     cursor: crosshair;
09 }
10   
11 p#default
12
13     cursor: default;
14 }
15   
16 p#pointer
17
18     cursor: pointer;
19 }
20   
21 p#move
22
23     cursor: move;
24 }
25   
26 p#e-resize
27
28     cursor: e-resize;
29 }
30   
31 p#ne-resize
32
33     cursor: ne-resize;
34 }
35   
36 p#nw-resize
37
38     cursor: nw-resize;
39 }
40   
41 p#n-resize
42
43     cursor: n-resize;
44 }
45   
46 p#se-resize
47
48     cursor: se-resize;
49 }
50   
51 p#sw-resize
52
53     cursor: sw-resize;
54 }
55   
56 p#s-resize
57
58     cursor: s-resize;
59 }
60   
61 p#w-resize
62
63     cursor: w-resize;
64 }
65   
66 p#text
67
68     cursor: text;
69 }
70   
71 p#wait
72
73     cursor: wait;
74 }
75   
76 p#help
77
78     cursor: help;
79 }
80   
81 p#progress
82
83     cursor: progress;
84 }

你可能感兴趣的:(css)