🖥️

CSS定义鼠标样式

 
/** 普通指针样式**/
body {
cursor: url(鼠标图片地址不需要引号), default;
}

/** 链接指针样式**/
a:hover{cursor:url(鼠标图片地址不需要引号), pointer;
}