CSS属性 cursor用来设置光标的类型,在鼠标指针悬停在元素上时显示相应的样式,使用举例:
<!DOCTYPE html>
<html>
<head>
<title>Cursor Example</title>
<style>
a {
cursor: pointer;
color: blue;
text-decoration: underline;
}
</style>
</head>
<body>
<a href="#">This is a link. The cursor should change to a pointer when hovering over it.</a>
</body>
</html>
下图为MDN(mdn web docs)截图