<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>鼠标常用样式</title>
<style>
div {
width: 280px;
height: 330px;
background-color: pink;
margin: 100px auto;
padding: 10px 10px;
}
li {
list-style: none;
margin-top: 20px;
}
</style>
</head>
<body>
<div>
<ul>
<li style="cursor: default;">默认的</li>
<li style="cursor: pointer;">小手</li>
<li style="cursor: move;">移动</li>
<li style="cursor: not-allowed;">禁止</li>
<li style="cursor: text;">文本</li>
</ul>
</div>
</body>
</html>