div内边距对子元素外边距的影响

直接上代码段:

<div style="background:red;400px;height:400px;padding:50px;">
  <div style="background:blue;200px;height:200px;margin:50px;">
  </div>
</div>

发现时会产生影响的

子元素的margin 相对于 父元素的 内容区域!

原文地址:https://www.cnblogs.com/qianduanxiaocaij/p/4812257.html