<!DOCTYPE HTML> <html lang="en-US"> <head> <meta charset="UTF-8"> <title></title> <style type="text/css"> /**光标悬浮时**/ .btn_sure:hover{background:url('./7.png');} /**点击前**/ .btn_sure{width:165px;height:33px;background:url('./6.png');} /**点击过程中**/ .btn_sure:active{background:url('./8.png');} </style> </head> <body> <!--CSS :active选择器与CSS :hover选择器--> <input type='button' class='btn_sure' /> </body> </html>