<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<style>
.click{
cursor: pointer;
}
.default{
cursor: default;
}
.move{
cursor: move;
}
.txt{
cursor: text;
}
</style>
</head>
<body>
<!--无兼容性问题的4中样式-->
<div class="click">我是点击样式</div>
<div class="default">我是默认样式</div>
<div class="move">我是移动样式</div>
<div class="txt">我是文本样式</div>
</body>
</html>
网友评论