test.html 499 B

12345678910111213141516171819202122232425262728293031
  1. <html>
  2. <style>
  3. div
  4. {
  5. background:url(./images/button/btn_up.png) no-repeat;
  6. width:18px;
  7. height:9px;
  8. border:solid 1px;
  9. }
  10. div:hover
  11. {
  12. background:url(./images/button/btn_up.png) no-repeat;
  13. background-position:-18px 0px;
  14. width:18;
  15. height:9px;
  16. border:solid 1px;
  17. }
  18. div:clicked
  19. {
  20. background:url(./images/button/btn_up.png) no-repeat;
  21. background-position:-36px 0px;
  22. width:18;
  23. height:9px;
  24. border:solid 1px;
  25. }
  26. </style>
  27. <body>
  28. <div class = abc></div>
  29. </body>
  30. </html>