15_伪元素.html 715 B

1234567891011121314151617181920212223242526272829
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>Document</title>
  7. <style>
  8. /* 伪元素 ::after 向页面指定的标签后边添加内容 */
  9. div::after{
  10. content: "";
  11. color: red;
  12. font-size: 30px;
  13. background-color: blue;
  14. height: 100px;
  15. width: 200px;
  16. display: block;
  17. }
  18. /* 伪元素 ::before 向页面指定的标签前面添加内容 */
  19. div::before{
  20. content: "你好";
  21. }
  22. </style>
  23. </head>
  24. <body>
  25. <div>
  26. <span>hello</span>
  27. </div>
  28. </body>
  29. </html>