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

前端 未结 5 776
余生分开走
余生分开走 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:28

    p, li, div {
        margin-bottom: 10px;
    }
    #parentID {
        margin-bottom: -10px;
    }
    

提交回复
热议问题