last-child of div class

前端 未结 4 1268
孤独总比滥情好
孤独总比滥情好 2021-02-06 00:43

I am finishing some Wordpress web page and I want to style (with CSS) the roll of entries in the Posts page. Wordpress creates this:

         


        
4条回答
  •  刺人心
    刺人心 (楼主)
    2021-02-06 00:56

    For the most comprehensive browser support, I would recommend using this:

    .entry { border-bottom: 1px solid yellow; }
    .entry:last-child { border-bottom: 0; }
    

提交回复
热议问题