CSS
How to Remove the Dotted Border Around Hyperlinked Images in Firefox
I ran into a problem with hyperlinked images in Firefox this morning. There seemed to be a lot of opinions on how to fix this in the site CSS, but the one I found that worked best was:
a {
outline: none;
}