Avoid border around images and links - CSS Views : 435
Tagged in : CSS
Send mail vote down 0 vote down 0
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 .