/ Published in: CSS
URL: anibalestrella.com
Expand |
Embed | Plain Text
/* border image rollover effect */ .highlight img{ border: 1px solid red; } .highlight:hover img{ border: 1px solid red; } .highlight:hover{ color: red; /* Dummy for IE bug */ }
Comments
Subscribe to comments
You need to login to post a comment.

zenzir, so what you're saying is that with this code I can set the border for red, and if I rollover the image, the border will change from red to red -- so I'll only know that it actually changed to red, as opposed to just stayed red. ;-)