Difference between margin and padding?

后端 未结 22 2156
广开言路
广开言路 2020-11-22 12:58

What exactly is the difference between margin and padding in CSS? It really doesn\'t seem to serve much purpose. Could you give me an examp

22条回答
  •  孤独总比滥情好
    2020-11-22 13:09

    Padding allows the developer to maintain space between the text and it's enclosing element. Margin is the space that the element maintains with another element of the parent DOM.

    See example:

    
    
        Pseudo Elements
        
    
    
        
    Notice the distance between the top and this text. Then compare it with the distance between the bottom border and the this text.

提交回复
热议问题