the layout of a list, but the last one obviously has a border, and I don"t want it to appear. What should I do?
.list{
margin-top: 10px;
li{
display: flex;
justify-content: space-between;
position: relative;
padding: 12px 15px;
background-color: -sharpfff;
.right{
font-size: 13px;
color: -sharp999;
}
}
li:after{
content: "";
position: absolute;
left: 15px;
right: 0;
bottom: 0;
border-bottom: 1px solid -sharpeee;
}
}