导航分隔线
/*使用伪元素制作导航列表项分隔线*/
.nav li:before{
content:"";
position:absolute;
right:0px;
top:20px;
height:15px;
width:1px;
background:linear-gradient(to top,#f82f87,#B0363F,#f82f87);
怎么实现的??