从ul li 开始就没有效果产生了
.nav {
height: 30px;
background: #e3e4e5;
border-bottom: 1px solid #ddd;
}
.nav-box {
margin: 0px auto;
width: 1190px;
text-align: right;
}
.nav-box ul li {
display: inline-block;
padding: 0px 10px;
font-size: 12px;
height: 30px;
line-height: 30px;
position: relative; /*相对定位*/
}
.nav-box ul li a {
color: #999999;
text-decoration: none;
}
.nav-box ul li:not(:last-child):after {
content: "";
width: 1px;
height: 14px;
background: #cccccc;
position: absolute; /*绝对定位*/
top: 8px;
right: 0px;
display: block;
position没有写,布局不生效