Day26光标类型cursor

image

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>光标类型</title>
    <style>
        div{
            width: 300px;
            height: 300px;
            background-color: pink;
            /* 默认值,箭头 */
            cursor: default;
            /* 小手效果 */
            cursor: pointer;
            /* 工字型,提醒用户可以选取文字 */
            cursor: text;
            /* 十字光标,提示用户可以移动 */
            cursor: move;
        }
    </style>
</head>
<body>
    <div></div>
</body>
</html>
posted @ 2025-11-27 23:20  冰涿  阅读(2)  评论(0)    收藏  举报