How do I have a border-bottom on all except the last item

后端 未结 4 1979
遥遥无期
遥遥无期 2021-02-02 08:09

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

4条回答
  •  迷失自我
    2021-02-02 08:43

    Use :not(:last-child).

    .sideNav li:not(:last-child) a {
        /* your css here */
    }
    

提交回复
热议问题