伪元素

作者: 月尚 | 来源:发表于2018-04-26 15:32 被阅读0次
    <!DOCTYPE html>
    <html lang="en">
    <head>
        <style>
            *{
                margin: 0;
            }
            span::before{
                content: "今天是";
                /*还可以*/
                /*position: relative;
                left: 50px;
                top: 50px;
                display: inline-block;
                width: 20px;
                height: 20px;
                background-color: red;*/
            }
            span::after{
                content: "不用上课"
            }
        </style>
        <meta charset="UTF-8">
        <title>伪元素</title>
    </head>
    <body>
        <span>星期六</span>
    </body>
    </html>
    

    相关文章

      网友评论

          本文标题:伪元素

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