Changing CSS for last
  • 前端 未结 10 1559
    暗喜
    暗喜 2020-11-30 22:30

    I am wondering if there is some way to change a CSS attribute for the last li in a list using CSS. I have looked into using :last-child, but this

    10条回答
    •  感动是毒
      2020-11-30 23:09

      2015 Answer: CSS last-of-type allows you to style the last item.

      ul li:last-of-type { color: red; }
      

    提交回复
    热议问题