2023-04-14 css before after

发布时间 2023-04-14 16:55:24作者: 哎呦你可棒棒了

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。