CSS 鼠标相关的属性

 

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <style>
        div {
            font-size: 20px;
            color: red;
            cursor: not-allowed;
            /*
                pointer 指针样式
                wait 等待样式
                text 文本样式
                crosshair 十字架样式
                help 帮助样式
                move 移动样式
                not-allowed 不允许样式
            */
        }
    </style>
</head>

<body>
    <div>你好,世界!</div>

</body>

</html>

 

posted @ 2025-05-19 13:17  黑山老猫  阅读(8)  评论(0)    收藏  举报