Interview Questions

How do I eliminate the blue border around linked images?

CSS Interview Questions and Questions


(Continued from previous question...)

36. How do I eliminate the blue border around linked images?

in your CSS, you can specify the border property for linked images:

a img { border: none ; }
However, note that removing the border that indicates an image is a link makes it harder for users to distinguish quickly and easily which images on a web page are clickable.

(Continued on next question...)

Other Interview Questions