Get rid off blue highlighting of focussed input fields in safari and google chrome
If you want to get rid off the blue highlighting of focussed input fields in safari and google chrome you have to add the following style to your input fields:
input {
outline: 0 none;
}
textarea {
outline: 0 none;
}
jazzanowak @ January 16, 2010