怎么使用伪元素制作分割线啊,没学过伪元素啊,
.nav li:after{
content: '';
position: absolute;
height:20px;
width: 1px;
top:0;
bottom:0;
left: 0;
margin: auto auto;
background: #999;
}
div::after{
content:"";
display:block;
width:100px;
height:40px;