网页中的CSS定义鼠标形状

来源:百度知道 编辑:UC知道 时间:2024/05/25 10:32:20
都知道自定义鼠标形状的格式是
cursor: url

那么如何自定义手形鼠标呢?
就是点击超链接出来那个小手
HAND
如果把它也变成url
格式是?

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>无标题文档</title>
<style type="text/css">
<!--
.abc {
cursor: hand;
page-break-before: auto;
page-break-after: auto;
}
-->
</style>
</head>

<body class="abc">
狼爱上羊
</body>
</html>