课程
/前端开发
/HTML/CSS
/十天精通CSS3
请问错在哪里呢
2015-08-14
源自:十天精通CSS3 5-5
正在回答
使用 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入门教程,深刻详解CSS3知识让网页穿上绚丽装备
1 回答.post p:last-child和.post :last-child的区别
3 回答有 nth-last-child(n),为何没有nth-first-child(n) ?
2 回答伪类选择器(:nth-last-child)不规则的选择有没有公式?
1 回答:nth-child(n)应该怎么用
4 回答为什么最后一项导航分割线删除不了呢