Avoid border around images and links - CSS Views : 464
Tagged in : CSS
0 0
Send mail
In Firefox, when you'd clicked a image or link there you'll see a dotted border around the image or link. It makes ugly to the website.





To resolve this issue just a single line css is enough.


<style type="text/css">
a:active, a:focus{outline: 0;}
</style>
By Rekha, On - 2009-12-09



    Login to add Comments .