美文网首页
css视觉--自定义文本选择

css视觉--自定义文本选择

作者: 怪兽别跑biubiubi | 来源:发表于2018-03-23 15:06 被阅读0次
<!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>自定义文本选择</title>
  <style>
    /* .custom-text::selection {
      background: aquamarine;
      color: black;
    } */
    .custom-text::selection {
      background: deeppink;
      color: white;
    }
  </style>
</head>
<body>
  <p class="custom-text">
    ::selection 定义元素上的伪选择器,以便在选定元素时设置其中文本的样式。
    请注意,如果不组合任何其他选择器,则样式将在文档根级别应用于任何可选元素。
  </p>
</body>
</html>

相关文章

网友评论

      本文标题:css视觉--自定义文本选择

      本文链接:https://www.haomeiwen.com/subject/rtrxcftx.html