lqh
2015-08-14 16:32
请问错在哪里呢
使用 display:none 就隐藏了
.nav li::after{
content:"";
position:absolute;
right:0px;
top:10px;
height:30px;
width:1px;
background:linear-gradient(to bottom,#aaa,#fff,#aaa);
}
/*删除第一项和最后一项导航分隔线*/
.nav li:last-child::after{
width: 0px;
height: 0px;
}
after之前应该是双冒号,
十天精通CSS3
242558 学习 · 2623 问题
相似问题