Remove dotted line (outline) on the clicked link

Remove dotted line (outline) on the clicked link

There will a dotted line around the link after you click on it. To remove that dotted line, simply apply this CSS script :

a:focus {
  border: 0;
  outline: none;
}
Have a try! :D

Write by Arafa Daming