border image rollover effect cross browser


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



Copy this code and paste it in your HTML
  1. /* border image rollover effect */
  2. .highlight img{
  3. border: 1px solid red;
  4. }
  5.  
  6. .highlight:hover img{
  7. border: 1px solid red;
  8. }
  9.  
  10. .highlight:hover{
  11. color: red; /* Dummy for IE bug */
  12. }

URL: anibalestrella.com

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.