Getting rid of the blue focus rectangle on input boxes in HTML/CSS?

Solution 1:

It is in fact a CSS attribute. This will hide that glowing effect:

input:focus, textarea:focus {
    outline: none;
}