Html中自定义鼠标的形状

时间:2022-10-20 00:30:24

Html中自定义鼠标的形状

<html>
<head>
<title>自定义的鼠标形状</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<style type="text/css">
body {font-size:12px;}
h4 {cursor:move;}
p {cursor:text;}
img {cursor:hand;}
a {cursor:help;}
</style>
</head>
<body>
<h4>111111111111111111111</h4>
<img src="2.jpg" width="200px" height="30px">
<br>
<p>这是一段文字</p>
<br>
<a href="#">000000000000000</a>
</body>
</html>

Html中自定义鼠标的形状

------------------

----------------------------