1. ::after伪类选择器(内层span,a小样式,外层宽度100%border)
.submenu .center h3 a::after{
content: '';
display: block;
width: 36px;
height: 5px;
margin-top: 10px;
background-color: #fff;
}
运行结果
2. ::before伪类选择器(li圆点)
.submenu .center li a:before {
content: '•';
display: inline-block;
color: #fff;
margin-right: 4px;
}
运行结果