详解:19 ::selection

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Document</title>
    <style type="text/css">
        ::selection
        {
            color: red;
        }
      
    </style>
</head>
<body>
    <h1>唉</h1>
    <input type="text" name="username" id="" placeholder="合法用户名" />
    <br>
    <input type="text" name="username1" id="" placeholder="输入用户名">
    <br>
    <textarea name="" id="" cols="30" rows="10" placeholder="个人简介"></textarea>
</body>
</html>

核心: ::selection:意思是按住鼠标左键,往右滑动就能显示出效果了

posted @ 2020-04-26 10:57  贵哥的编程之路  阅读(5)  评论(0)    收藏  举报