鼠标常用样式(cursor)
Posted 澎湃_L
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了鼠标常用样式(cursor)相关的知识,希望对你有一定的参考价值。
<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>
以上是关于鼠标常用样式(cursor)的主要内容,如果未能解决你的问题,请参考以下文章