关于光标属性cursor

     光标的形状取值主要有如下几种:css

     default,默认光标;hand,竖起一只手指的手形光标;crosshair,简单的十字线光标;html

     text,大写字母I的形状;wait,用于标示程序忙用户须要等待的光标。ssh

     举例以下:ui

<html>
<head>
<meta http-equiv="content-type" content="text/html;charset=gb2312"/>
<title></title>
<style type="text/css">
<!--
.l{
font-size:12px;
line-height:25px;
}
ol{
list-style-image:url(images/closel.gif);
cursor:wait;
}
-->
</style>
</head>
<body>
<ol class="l">
<li>咱们应该团结</li></br>
<li>咱们应该团结</li></br>
<li>咱们应该团结</li></br>
</ol>
</body>
</html>