12_方向属性.html 710 B

1234567891011121314151617181920212223242526272829
  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. /* top left right bottom 同样适用于padding */
  21. }
  22. </style>
  23. </head>
  24. <body>
  25. <div>hello</div>
  26. <div>world</div>
  27. </body>
  28. </html>