Your Ad Here

Posted By

anvilcity on 06/10/10


Tagged


Versions (?)

Who likes this?

2 people have marked this snippet as a favorite

kubaitis
TraceyM


CSS Sprites w/out Using Background Images


 / Published in: CSS
 

URL: http://www.sohtanaka.com/web-design/css-sprites-wout-background-images/

  1. <div class="affiliates">
  2. <a href="#"><img src="rokkan.gif" alt="" /></a>
  3. <a href="#"><img src="1md.gif" alt="" /></a>
  4. <a href="#"><img src="designcubicle.gif" alt="" /></a>
  5. </div>
  6.  
  7. .affiliates a {
  8. width: 204px; height:182px;
  9. overflow: hidden;
  10. float: left;
  11. }
  12. .affiliates img {
  13. border: none;
  14. }
  15. .affiliates a:hover img {
  16. margin-top: -182px;
  17. }

Report this snippet  

You need to login to post a comment.