2023-04-14 css before after

before 在元素前,after在元素之后,使用:

.or::before {
        width: 100px;
        height: 1px;
        background: #000;
        display: block;
        content: '';
    }
    .or::after {
        width: 100px;
        height: 1px;
        background: #000;
        display: block;
        content: '';
    }

注意:最好设置为block。

posted @ 2023-04-14 16:47  叶乘风  阅读(6)  评论(0编辑  收藏  举报