Eliminate Chrome yellow border on forms
Eliminate Chrome yellow border on forms – Edit content (add a revision)
Some people understand "user-friendliness" and design rather differently than Google does. So, to eliminate the outline border effect on form element focus, which is Chrome's default behavior, here is a quick fix. In the CSS you set the default behavior as it is in the rest of the browsers. [code,css] ------ input,select,textarea{ outline:none; } ------
Save as new Revision
Syntax docs