<!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>
        .test::after {
            content: "heeeee";
            position: absolute;
            display: block;
            background-color: blue;
        }
        
        .test::before {
            content: "kkkkk777777777777777";
            display: block;
            position: absolute;
            background-color: red;
        }
        
        .test {
            background-color: pink;
            position: relative;
        }
    </style>
</head>

<body>
    <div class="test">
        one
    </div>
</body>

</html>

 

相关文章:

  • 2022-12-23
  • 2021-12-06
  • 2021-11-25
  • 2021-11-30
  • 2021-12-03
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2021-10-19
  • 2021-07-01
相关资源
相似解决方案