I recently ran into an issue where I was using an image as part of the navigation and when you clicked it, you would go to a specific section of the website. When you would click the link, there would be a dotted line around the image and it became real annoying.
After a little bit of research I found out you can remove this dotted line by using the following CSS:
a {
outline: none;
}
After I placed that in my default stylesheet, the lines were no more.
0 Responses
Stay in touch with the conversation, subscribe to the RSS feed for comments on this post.