当前位置:   article > 正文

CSS外边距合并(塌陷)和解决方法_css margin塌陷

css margin塌陷

目录

1.现象:

2.相邻块元素外边距合并(塌陷)的表现:

3.嵌套块元素外边距合并(塌陷)的表现:


1.现象:

CSS中使用外边距margin定义块元素的垂直外边距会产生外边距合并(塌陷)

2.相邻块元素外边距合并(塌陷)的表现:

e.g.

a.上下两个相邻块元素,如上面块元素有下外边距margin-bottom,下面的块元素有上外边距margin-top

b.他们之间的外边距不是两个margin-bottom和margin-bottom的和,而是两个值中较大的那个值。

e.g.

上面的盒子box1的margin-bottom:10px;下面的盒子box2的margin-top:20px;

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <title>Document</title>
  8. <style>
  9. * {
  10. margin: 0;
  11. padding: 0;
  12. }
  13. .box1 {
  14. width: 200px;
  15. height: 100px;
  16. background-color: pink;
  17. margin-bottom: 10px;
  18. }
  19. .box2 {
  20. width: 200px;
  21. height: 100px;
  22. background-color: blue;
  23. margin-top: 20px;
  24. }
  25. </style>
  26. </head>
  27. <body>
  28. <div class="box1"></div>
  29. <div class="box2"></div>
  30. </body>
  31. </html>

得到的结果是,整体height:220px;所以他们之间的margin取的是20px;(即是两者之间数值较大的margin-top)

解决方法:尽量只给相邻盒子中的一个盒子加margin值

3.嵌套块元素外边距合并(塌陷)的表现:

e.g.

a.有嵌套关系的两个块元素,如父级盒子无上内边距padding-top和边框border,且父级盒子和子级盒子都有上外边距margin-top

b.他们共同的上外边距margin-top两个值中较大的那个值。

e.g,

父盒子box1的width:300px;height:200px;margin-top: 10px;粉色

子盒子box2的width:200px;height:100px;margin-top: 20px;蓝色

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <title>Document</title>
  8. <style>
  9. * {
  10. margin: 0;
  11. padding: 0;
  12. }
  13. .box1 {
  14. width: 300px;
  15. height: 200px;
  16. background-color: pink;
  17. margin-top: 10px;
  18. }
  19. .box2 {
  20. width: 200px;
  21. height: 100px;
  22. background-color: blue;
  23. margin-top: 20px;
  24. }
  25. </style>
  26. </head>
  27. <body>
  28. <div class="box1">
  29. <div class="box2"></div>
  30. </div>
  31. </body>
  32. </html>

得到的结果是整体height:220px;所以他们总体的margin-top取的是20px;(即是margin-top和margin-bottom中两者之间数值较大的margin-top)

 解决方法1:给父元素加一个边框border(border-top),这样子元素加margin-top是从父元素的上边框开始算的

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <title>Document</title>
  8. <style>
  9. * {
  10. margin: 0;
  11. padding: 0;
  12. }
  13. .box1 {
  14. width: 300px;
  15. height: 200px;
  16. background-color: pink;
  17. border: 1px solid black;
  18. margin-top: 10px;
  19. }
  20. .box2 {
  21. width: 200px;
  22. height: 100px;
  23. background-color: blue;
  24. margin-top: 20px;
  25. }
  26. </style>
  27. </head>
  28. <body>
  29. <div class="box1">
  30. <div class="box2"></div>
  31. </div>
  32. </body>
  33. </html>

坏处:父盒子由于加了边框改变了大小

解决方法2:给父元素加一个上内边框padding-top,这样子元素加margin-top是从父元素的上边框开始算的

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <title>Document</title>
  8. <style>
  9. * {
  10. margin: 0;
  11. padding: 0;
  12. }
  13. .box1 {
  14. width: 300px;
  15. height: 200px;
  16. background-color: pink;
  17. padding-top: 1px;
  18. margin-top: 10px;
  19. }
  20. .box2 {
  21. width: 200px;
  22. height: 100px;
  23. background-color: blue;
  24. margin-top: 20px;
  25. }
  26. </style>
  27. </head>
  28. <body>
  29. <div class="box1">
  30. <div class="box2"></div>
  31. </div>
  32. </body>
  33. </html>

 坏处:父盒子由于加了padding-top也改变了大小

解决方法3:给父元素加overflow:hidden溢出隐藏,这样子元素加margin-top是从父元素的上边框开始算的(最常用,因为不会改变盒子大小

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <title>Document</title>
  8. <style>
  9. * {
  10. margin: 0;
  11. padding: 0;
  12. }
  13. .box1 {
  14. width: 300px;
  15. height: 200px;
  16. background-color: pink;
  17. overflow: hidden;
  18. margin-top: 10px;
  19. }
  20. .box2 {
  21. width: 200px;
  22. height: 100px;
  23. background-color: blue;
  24. margin-top: 20px;
  25. }
  26. </style>
  27. </head>
  28. <body>
  29. <div class="box1">
  30. <div class="box2"></div>
  31. </div>
  32. </body>
  33. </html>

父盒子大小没有改变

解决方法4:给父元素加浮动,这样子元素加margin-top是从父元素的上边框开始算的(也不会改变父大小)

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <title>Document</title>
  8. <style>
  9. * {
  10. margin: 0;
  11. padding: 0;
  12. }
  13. .box1 {
  14. width: 300px;
  15. height: 200px;
  16. background-color: pink;
  17. float: left;
  18. margin-top: 10px;
  19. }
  20. .box2 {
  21. width: 200px;
  22. height: 100px;
  23. background-color: blue;
  24. margin-top: 20px;
  25. }
  26. </style>
  27. </head>
  28. <body>
  29. <div class="box1">
  30. <div class="box2"></div>
  31. </div>
  32. </body>
  33. </html>

 结果与方法3同,就不贴图了

解决方法5:子元素转换为行内块元素(display: inline-block;),这样子元素加margin-top是从父元素的上边框开始算的(也不会改变父大小)

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <title>Document</title>
  8. <style>
  9. * {
  10. margin: 0;
  11. padding: 0;
  12. }
  13. .box1 {
  14. width: 300px;
  15. height: 200px;
  16. background-color: pink;
  17. float: left;
  18. margin-top: 10px;
  19. }
  20. .box2 {
  21. width: 200px;
  22. height: 100px;
  23. background-color: blue;
  24. margin-top: 20px;
  25. display: inline-block;
  26. }
  27. </style>
  28. </head>
  29. <body>
  30. <div class="box1">
  31. <div class="box2"></div>
  32. </div>
  33. </body>
  34. </html>

结果也与方法3同,也就不贴图了

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

闽ICP备14008679号