问答详情
源自:5-5 CSS3背景 制作导航菜单综合练习题

怎么使用伪元素制作分割线啊,没学过伪元素啊,

怎么使用伪元素制作分割线啊,没学过伪元素啊,

提问者:qq_慕虎8366744 2019-12-21 10:10

个回答

  • 恰逢暮雪
    2021-01-18 15:53:33

    .nav li:after{

        content: '';

        position: absolute;

        height:20px;

        width: 1px;

        top:0;

        bottom:0;

            left: 0;

                margin: auto auto;

        background: #999;

    }


  • 慕神2575441
    2019-12-25 17:19:18

    div::after{

    content:"";

    display:block;

     width:100px;

    height:40px;


    }