Have you noticed on some websites when clicking on an image or a link there is a dotted line? That line goes around the html-tag you are clicking on. I think it's rather ugly. Here is my way to remove it:
Put the following lines in your CSS:
:focus {
outline: 0;
}

Post new comment