Blogger Information
Blog 31
fans 2
comment 0
visits 27679
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
实列背景实战:精灵图/雪碧图
霏梦
Original
585 people have browsed it

- 作者:霏梦

  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>背景实战:精灵图/雪碧图</title>
  7. <style>
  8. .box1 {
  9. width: 500px;
  10. height: 400px;
  11. border: 1px solid #000000;
  12. background-image: url("1.png");
  13. background-repeat: no-repeat;
  14. background-position: 40px 20px;
  15. }
  16. .box2 {
  17. width: 110px;
  18. height: 110px;
  19. border: 1px solid #000000;
  20. background-image: url("1.png");
  21. background-repeat: no-repeat;
  22. background-position: -220px -110px;
  23. background-position: -0 -220px;
  24. /* background-position: -110px -220px; */
  25. }
  26. .box3 {
  27. width: 110px;
  28. height: 110px;
  29. background-image: url("1.png");
  30. background-position: -110px -220px;
  31. }
  32. </style>
  33. </head>
  34. <body>
  35. <div class="box1"></div>
  36. <div class="box2"></div>
  37. <div class="box3"></div>
  38. </body>
  39. </html>

精娄图

Correcting teacher:WJWJ

Correction status:qualified

Teacher's comments:写的不错,建议要有完整的流程!
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post