Loading

鼠标常用样式(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>

 

posted @ 2018-04-10 13:57  澎湃_L  阅读(387)  评论(0编辑  收藏  举报