伪元素::before和::after的使用

<!doctype html>
<html>
<head>
    <meta charset="utf-8">
    <title>伪元素::before和::after的使用</title>
    <style type="text/css">
        p:before {
            color: red;
            content: "这是使用『::before』伪元素插入的內容";
        }
        p:after {
            color: #00f;
            content: "这是使用『::after』伪元素插入的內容";
        }
        p:after, p:before {
            background-color: #ff0;
            font-weight: 700;
        }
    </style>
</head>
<body>
<p>::before和::after伪元素的使用</p>
<p>::before和::after伪元素的使用</p>
<p>::before和::after伪元素的使用</p>
</body>
</html>


  注意:使用::before和::after必须要有content属性,否则无效。

Copyright © 2024 码农人生. All Rights Reserved