How to add vertical spacing between block elements, but not top and bottom

前端 未结 5 732
余生分开走
余生分开走 2021-02-02 13:51

Say I have a bunch of P, LI, or DIV elements, with nothing between them. I want to control the vertical spacing between them, so they don\'t fit so tightly. But I don\'t want

5条回答
  •  星月不相逢
    2021-02-02 14:24

    This can also be done using :last-child or :first-child

    Here is an example:

    p, li, div {
        margin-bottom: 10px;
    }
    
    p:last-child, li:last-child, div:last-child {
        margin-bottom: none;
    }
    

提交回复
热议问题