最佳答案
我使用以下代码在菜单项之间添加分隔符:
#navigation_center li:before {
content: "| ";
color: #fff;
}
现在我希望第一个项目前面没有分隔符,所以我想出了以下代码:
#navigation_center li:before:first-child {
content: none;
}
但是这没有任何作用。有没有可能把: before 和: first-child 结合起来?