Pixy-style rollovers

Rolling over a part of image in a single three button image

by prasun_sultania

HTML

<a href="http://www.google.co.in" target="_blank">BUTTON</a>

CSS

a:link, a:visited {
display: block;
width: 203px; /*width and height of one button in the image*/
height: 72px;
text-indent: -1000em;
background: url(http://www.mediafire.com/conv/c6c106b508e86e1bb0974d5ad1dca483c123f747512547109a27ac88f08960a36g.jpg) -203px 0 no-repeat; /**left by -203 to display middle image**/
}
a:hover, a:focus {
background-position: right top; /*display the right part of image*/
}
a:active {
background-position: left top; /*display the left part of image*/
}