8_cssBFC.html 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>Document</title>
  7. <style>
  8. /* BFC */
  9. .box{
  10. width: 200px;
  11. height: 200px;
  12. background-color: blue;
  13. /* overflow: hidden; */
  14. border:1px solid black;
  15. }
  16. .box2{
  17. width: 100px;
  18. height: 100px;
  19. background-color: red;
  20. margin-left: 10px;
  21. margin-top: 50px;
  22. }
  23. .box3,.box4{
  24. width: 100px;
  25. height: 100px;
  26. background-color: green;
  27. }
  28. .box3{
  29. margin-bottom: 30px;
  30. }
  31. .box4{
  32. margin-top: 20px;
  33. background-color: purple;
  34. }
  35. .box5{
  36. overflow: hidden;
  37. }
  38. .box6,.box7{
  39. width: 100px;
  40. height: 100px;
  41. background-color: blue;
  42. float: left;
  43. }
  44. .box7{
  45. background-color: red;
  46. }
  47. .box8{
  48. overflow: hidden;
  49. background-color:green;
  50. }
  51. </style>
  52. </head>
  53. <body>
  54. <!-- 外边距溢出 -->
  55. <!-- <div class="box">
  56. <div class="box2"></div>
  57. </div> -->
  58. <!-- 外边距合并 -->
  59. <!-- <div class="box5">
  60. <div class="box3"></div>
  61. </div>
  62. <div class="box4"></div> -->
  63. <div class="box8">
  64. <div class="box6"></div>
  65. <div class="box7"></div>
  66. </div>
  67. </body>
  68. </html>