If i have a ul, how do i set a border-bottom on all the li items except the last one? I\'m also trying to make the width of the border 180
ul
li
border
Use :not(:last-child).
:not(:last-child)
.sideNav li:not(:last-child) a { /* your css here */ }