伪元素选择器

2018-04-29  本文已影响0人  直到世界尽头_Leo

1.什么是伪元素选择器?

作用:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>伪元素选择器</title>
    <style>
        .box{
            width: 200px;
            height: 200px;
            background: red;
        }
        .box::before{
            content: "“我是”";
            width: 50px;
            height: 50px;
            background: pink;
            display: block;
        }
        .box::after{
            content: "“yo”";
            width: 50px;
            height: 50px;
            background: pink;
            display: block;
        }
    </style>
</head>
<body>
    <div class="box">
        leo
    </div>
</body>
</html>
上一篇 下一篇

猜你喜欢

热点阅读