用戶界面樣式(鼠標樣式、輪廓線、防止拖拽)

1、常見的鼠標樣式如下:

cursor:default  默認的
cursor:pointer  小手
cursor:move   移動
cursor: text    文本
cursor: not-allowed    禁止

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Document</title>
</head>
<body>
    <p style="cursor:default">默認的:default</p>
    <p style="cursor:pointer">小手:pointer</p>
    <p style="cursor:move">移動:move</p>
    <p style="cursor: text">文本:text</p>
    <p style="cursor: not-allowed">禁止:not-allowed</p>
</body>
</html>

2、取消輪廓線

       outline:none;

3、防止文本拖拽

     resize:none;

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章