当前位置:   article > 正文

css--伪元素选择器_css 选择器 伪元素

css 选择器 伪元素
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>伪元素选择器</title>
    <style>
        /* 
             伪元素,表示页面中一些特殊的并不真实的存在的元素(特殊的位置)
                伪元素使用 :: 开头

                ::first-letter 表示第一个字母
                ::first-line 表示第一行
                ::selection 表示选中的内容
                ::before 元素的开始 
                ::after 元素的最后
                    - before 和 after 必须结合content属性来使用
        */
        p::first-letter{
            font-size: 30px;
        }

        p::first-line{
            background-color: darksalmon;
        }

        p::selection{
            background-color: darkseagreen;
        }

        div::before{
            content: '『';
            color:deeppink;
        }
        div::after{
            content:'』';
            color:deeppink;
        }
    </style>
</head>
<body>
    <div>hello</div>
    <p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Tempora modi consequuntur voluptatum nihil aperiam obcaecati similique, a culpa repellat doloremque, temporibus architecto? Delectus, totam error! Nam necessitatibus voluptate rem provident.</p>
</body>
</html>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/酷酷是懒虫/article/detail/1014408
推荐阅读
相关标签
  

闽ICP备14008679号