零零乙 2010-02-03 03:20 采纳率: 33.3%
浏览 454
已采纳

什么时候在 CSS 中使用 margin vs padding

When writing CSS, is there a particular rule or guideline that should be used in deciding when to use margin and when to use padding?

转载于:https://stackoverflow.com/questions/2189452/when-to-use-margin-vs-padding-in-css

  • 写回答

17条回答 默认 最新

  • 游.程 2012-02-07 20:59
    关注

    TL;DR: By default I use margin everywhere, except when I have a border or background and want to increase the space inside that visible box.

    To me the biggest difference between padding and margin is that vertical margins auto-collapse, and padding doesn't. Consider two elements one above the other each with padding of 1em. This padding is considered to be part of the element, and is always preserved. So you will end up with the content of the first element, followed by the padding of the first element, followed by the padding of the second, followed by the content of the second element. Thus content of the two elements will end up being 2em apart.

    Now replace that padding with 1em margin. Margins are considered to be outside of the element, and margins of adjacent items will overlap. So in this example you will end up with the content of the first element followed by 1em of combined margin followed by the content of the second element. So the content of the two elements is only 1em apart.

    This can be really useful when you know that you want say 1em of spacing around an element, regardless of what element it is next to.

    The other two big differences is that padding is included in the click region and background color/image, but not the margin.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(16条)

报告相同问题?

悬赏问题

  • ¥15 ads仿真结果在圆图上是怎么读数的
  • ¥20 Cotex M3的调试和程序执行方式是什么样的?
  • ¥20 java项目连接sqlserver时报ssl相关错误
  • ¥15 一道python难题3
  • ¥15 用matlab 设计一个不动点迭代法求解非线性方程组的代码
  • ¥15 牛顿斯科特系数表表示
  • ¥15 arduino 步进电机
  • ¥20 程序进入HardFault_Handler
  • ¥15 oracle集群安装出bug
  • ¥15 关于#python#的问题:自动化测试