Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
<img src="<?=$photo;?>" width="235" height="154" alt="<?=$name;?>" />

i want when the user mouse it over it draw a border of the image like facebook

share|improve this question
2  
possible duplicate of Draw small blue square when over my icon – p.campbell Apr 14 '11 at 22:07

2 Answers

up vote 3 down vote accepted

Is this what you're looking for... http://jsfiddle.net/5mmhE/3/

share|improve this answer
2  
Don't forget to add a border beforehand, as without it, the image bounces: jsfiddle.net/5mmhE/3. – Blender Apr 14 '11 at 22:11
@Blender... good point. I'll update! – Hristo Apr 14 '11 at 22:14
@Hristo : thank u man it works fine – Buffon Apr 14 '11 at 22:23
@Buffon... anytime. glad I could help! – Hristo Apr 14 '11 at 22:27
@Hristo : how can i make it work with IE6?? – Buffon Apr 14 '11 at 22:28
show 7 more comments

CSS solution is to store link as a block and set it's background-image property in css and then add :hover to that link.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.