Skip to content

Instantly share code, notes, and snippets.

@snowman-repos
Created October 2, 2012 03:34
Show Gist options
  • Select an option

  • Save snowman-repos/3816004 to your computer and use it in GitHub Desktop.

Select an option

Save snowman-repos/3816004 to your computer and use it in GitHub Desktop.
CSS: CSS Sprite Link with Hover
a {
display: block;
background: url(sprite.png) no-repeat;
height: 30px;
width: 250px;
}
a:hover {
background-position: 0 -30px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment