首页 > 其他 > 详细

鼠标常用样式(cursor)

时间:2018-04-10 14:22:52      阅读:194      评论:0      收藏:0      [点我收藏+]
<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)

原文:https://www.cnblogs.com/EricZLin/p/8778462.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!