.hellow{ background:url(bg.jpg) no-repeat left top; height:20px; width:100px; text-align:center; color:#fff; font-size:14px; line-height:20px; cursor:pointer}
.hellow:hover{ background:url(bg.jpg) no-repeat left bottom;}
图片保存为bg.jpg
然后给div定义为hellow
鼠标放上去的样式为:hover 设置背景图片 不重复 左 底
#button {
display:block;
width:112px;
height:36px;
background:url(notitle.png) 0 0 no-repeat;
}
#button:hover {
background:url(notitle.png) 50% 100% no-repeat;
}