Grafik Hover mit CSS und ohne nachladen


/ Published in: CSS
Save to your folder(s)



Copy this code and paste it in your HTML
  1. a.buttonhover {
  2. display:block;
  3. width:80px;
  4. height:30px;
  5. background:transparent url('LinkZurGrafik') no-repeat top left;
  6. }
  7.  
  8. a.buttonhover:hover {
  9. display:block;
  10. width:80px;
  11. height:30px;
  12. background:transparent url('LinkZurGrafik') no-repeat bottom right;
  13. }

URL: http://www.dailystuff.de/index.php?/archives/4-Button-Hover-mit-CSS-und-ohne-nachladen.html

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.