<!DOCTYPE html>
<html lang="en">


<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>鼠标样式</title>
<style>


</style>
</head>


<body>
<ul>
<li style="cursor:default;">默认鼠标样式</li>
<li style="cursor:pointer;">小手样式</li>
<li style="cursor:text;">文本样式</li>
<li style="cursor:move;">移动样式</li>
<li style="cursor:not-allowed;">禁止样式</li>
<li style="cursor:wait;">加载样式</li>
</ul>
</body>


</html>