Remove Active Link Borders


/ Published in: CSS
Save to your folder(s)

Some browsers like Firefox and IE add a dotted outline border over the link user clicked. It is a useful accessibility feature that lets user know which link he clicked or is in focus. But sometimes you need to get rid of this, here’s the CSS you need to use.


Copy this code and paste it in your HTML
  1. a:active, a:focus{ outline:none; }

Report this snippet


Comments


You need to login to view comments.