10_盒模型.html 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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. .box1{
  9. width: 100px;
  10. height: 100px;
  11. background-color:red;
  12. /* margin:10px; */
  13. /* margin-bottom: 10px;
  14. margin-top:10px;
  15. margin-left: 10px;
  16. margin-right: 10px; */
  17. /* 外边距 上 右 下 左 */
  18. margin:10px 10px 10px 10px;
  19. /* 内边距 */
  20. padding:10px;
  21. }
  22. body{
  23. /* margin 代表外边距 */
  24. margin:0;
  25. }
  26. .box2{
  27. width: 100px;
  28. height: 100px;
  29. background-color:blue;
  30. /* margin-left: auto;
  31. margin-right: auto; */
  32. /* 上下 左右 */
  33. margin : 0 auto;
  34. }
  35. </style>
  36. </head>
  37. <body>
  38. <div class="box1">1</div>
  39. <div>hello</div>
  40. <div class="box2"></div>
  41. </body>
  42. </html>