【笔记】鼠标悬浮CSS样式 发表于 2022-07-29 更新于 2025-12-26 阅读次数: 前言鼠标悬浮CSS样式 正文1234567891011121314151617181920212223242526272829303132333435*:hover { /* 默认光标(箭头) */ cursor: default; /* 浏览器自动设置的光标 */ cursor: auto; /* 十字形 */ cursor: default; /* 手形 */ cursor: pointer; /* I形 */ cursor: text;十字 /* 沙漏形 */ cursor: wait; /* 问号形 */ cursor: help; /* 移动十字,方向:四周 */ cursor: move; /* 移动十字,方向:北 */ cursor: n-resize; /* 移动十字,方向:南 */ cursor: s-resize; /* 移动十字,方向:西 */ cursor: w-resize; /* 移动十字,方向:东 */ cursor: e-resize; /* 移动十字,方向:东北 */ cursor: ne-resize; /* 移动十字,方向:东南 */ cursor: se-resize; /* 移动十字,方向:西北 */ cursor: nw-resize; /* 移动十字,方向:西南 */ cursor: sw-resize;} 完成参考文献CSDN——巧克力很苦