鼠标的样式
来源:华佗健康网
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>鼠标的光标(鼠标样式)</title>
<style>
div{
width: 100px;
height: 100px;
background-color: pink;
margin: 100px auto;
/*point:显示光标为小手,表示这是一个链接,点击后跳转*/
/* cursor: pointer;*/
cursor: move;
/*move:上下左右箭头组成的图案,表示拖拽*/
/*cursor:not-allow*/
/*not-allow:表示禁止,表示不允许进行操作*/
}
</style>
</head>
<body>
<div></div>
</body>
</html>
因篇幅问题不能全部显示,请点此查看更多更全内容