| 12345678910111213141516171819202122232425262728293031 |
- <html>
- <style>
- div
- {
- background:url(./images/button/btn_up.png) no-repeat;
- width:18px;
- height:9px;
- border:solid 1px;
- }
- div:hover
- {
- background:url(./images/button/btn_up.png) no-repeat;
- background-position:-18px 0px;
- width:18;
- height:9px;
- border:solid 1px;
- }
- div:clicked
- {
- background:url(./images/button/btn_up.png) no-repeat;
- background-position:-36px 0px;
- width:18;
- height:9px;
- border:solid 1px;
- }
- </style>
- <body>
- <div class = abc></div>
- </body>
- </html>
|