4_基础样式1.html 960 B

123456789101112131415161718192021222324252627282930313233343536373839
  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. /* 宽高 单位px 像素 */
  10. div{
  11. width:800px;
  12. height:1200px;
  13. /* background: red; */
  14. /* 背景颜色 */
  15. background-color: red;
  16. /* 背景图片 */
  17. background-image:url(./img01.jpeg);
  18. /* background-repeat:repeat|默认值 no-repeat|不重复; */
  19. background-repeat:no-repeat;
  20. /* 背景图片位置:x y;
  21. x 水平位置 固定值|left center right
  22. y 垂直位置 固定值|top center bottom
  23. */
  24. background-position: center center ;
  25. }
  26. </style>
  27. </head>
  28. <body>
  29. <div>
  30. hjghgfhgfghfhg
  31. </div>
  32. </body>
  33. </html>