04.练习-背景重复.html 623 B

1234567891011121314151617181920212223242526
  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. .box1{
  10. width: 990px;
  11. height: 32px;
  12. /* background-color: red; */
  13. margin: 0 auto;
  14. /* background-image: url('./images/bg.png');
  15. background-repeat: repeat-x; */
  16. background: url('./images/bg.png') repeat-x;
  17. }
  18. </style>
  19. </head>
  20. <body>
  21. <div class="box1"></div>
  22. </body>
  23. </html>