<body>
    <div>常用的鼠标样式(cursor):pointer,move,defalt,text(火狐不支持hand)</div>
</body>
<style>
        div {
            width: 200px;
            height: 200px;
            background: rgb(184, 147, 147);
        }
        div:hover {
            cursor: pointer;/* 小手 */
            cursor: move;/* 十字架 */
            cursor: default;/* 默认白色箭头 */
            cursor: text;/* I型 */
        }
    </style>

 

相关文章:

  • 2021-12-22
  • 2022-12-23
  • 2021-09-11
  • 2022-12-23
  • 2022-12-23
  • 2021-12-22
  • 2021-12-26
猜你喜欢
  • 2021-12-12
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-12-12
  • 2021-12-06
  • 2021-11-11
相关资源
相似解决方案