12_方向属性.html 646 B

123456789101112131415161718192021222324252627
  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. div{
  9. width: 100px;
  10. height: 100px;
  11. background-color: red;
  12. /* 下外边距 */
  13. margin-bottom: 20px;
  14. /* 上外边距 */
  15. /* margin-top: 20px; */
  16. /* 左外边距 */
  17. /* margin-left: 20px; */
  18. /* 右外边距 */
  19. /* margin-right: 20px; */
  20. }
  21. </style>
  22. </head>
  23. <body>
  24. <div>hello</div>
  25. <div>world</div>
  26. </body>
  27. </html>