当前位置:   article > 正文

margin塌陷及解决方法_magin影响宽度怎么办

magin影响宽度怎么办

margin现象:

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <title></title>
  6. <link rel="stylesheet" type="text/css" href="1.css"/>
  7. </head>
  8. <body>
  9. <div class="wrapper">
  10. <div class="content"></div>
  11. </div>
  12. </body>
  13. </html>
  1. *{
  2. margin: 0px;
  3. padding: 0px;
  4. }
  5. .wrapper{
  6. margin-left: 100px;
  7. margin-top: 100px;
  8. width: 100px;
  9. height: 100px;
  10. background-color: black;
  11. }
  12. .content{
  13. width: 50px;
  14. height: 50px;
  15. background-color: green;
  16. }

效果:

左右方向:

当我们在对子标签移动时,加入如(margin-left/right: 20px;  ), 可以左右移动,

上下方向:

但当子类content中的margin-top: 小于或等于父类的margin-top: 时,则不会发生移动,

当子类content中的margin-top: 大于于父类的margin-top: 时,则子类和父类一起发生移动,两者之间的相对位置不变。

这种现象叫做margin塌陷。




解决方法:

{触发盒子的bfc (block  format context);}

四种方法:

在样式中加入一下任意一种即可,解决,但各有弊端,根据需要取最适合的。

1.position: absolute;

2.  float: left/right;

3.overflow: hidden;

4.display: inline-block;

 

如在父类中加入:position: absolute;

  1. *{
  2. margin: 0px;
  3. padding: 0px;
  4. }
  5. .wrapper{
  6. position: absolute;
  7. margin-left: 100px;
  8. margin-top: 100px;
  9. width: 100px;
  10. height: 100px;
  11. background-color: black;
  12. }
  13. .content{
  14. margin-top: 50px;
  15. width: 50px;
  16. height: 50px;
  17. background-color: green;
  18. }

即可解决。

 

 

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/凡人多烦事01/article/detail/128944
推荐阅读
相关标签