案例:CSS3 案例     状态:可编辑再运行    进入竖版
 运行结果 
x
 
1
<html>
2
3
<body>
4
<p>请把鼠标移动到单词上,可以看到鼠标指针发生变化:</p>
5
<span style="cursor:auto">
6
Auto</span><br />
7
<span style="cursor:crosshair">
8
Crosshair</span><br />
9
<span style="cursor:default">
10
Default</span><br />
11
<span style="cursor:pointer">
12
Pointer</span><br />
13
<span style="cursor:move">
14
Move</span><br />
15
<span style="cursor:e-resize">
16
e-resize</span><br />
17
<span style="cursor:ne-resize">
18
ne-resize</span><br />
19
<span style="cursor:nw-resize">
20
nw-resize</span><br />
21
<span style="cursor:n-resize">
22
n-resize</span><br />
23
<span style="cursor:se-resize">
24
se-resize</span><br />
25
<span style="cursor:sw-resize">
26
sw-resize</span><br />
27
<span style="cursor:s-resize">
28
s-resize</span><br />
29
<span style="cursor:w-resize">
30
w-resize</span><br />
31
<span style="cursor:text">
32
text</span><br />
33
<span style="cursor:wait">
34
wait</span><br />
35
<span style="cursor:help">
36
help</span>
37
</body>
38
39
</html>
40