4_css宽高背景.html 975 B

12345678910111213141516171819202122232425262728293031323334
  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. /* 宽高 背景 */
  10. div{
  11. /* 宽 */
  12. width:1000px;
  13. /* 高 */
  14. height:800px;
  15. /* 背景 */
  16. background-color:red ;
  17. /* 背景图片url(图片地址) */
  18. background-image: url(img01.jpeg);
  19. /* 背景图片重复 repeat|no-repeat*/
  20. background-repeat: no-repeat;
  21. /* 背景图片位置 x水平(固定值|left center right) y垂直 (固定值| top center bottom)*/
  22. background-position:center center ;
  23. /* 省略写法 */
  24. background: red url(img01.jpeg) no-repeat center center;
  25. }
  26. </style>
  27. </head>
  28. <body>
  29. <div>我是一个div</div>
  30. </body>
  31. </html>