HTML5 – remove outline around input. By Cătălin George Feștilă | 07/05/2019 0 CommentThis tutorial is about how to remove outline style around input boxes in chrome using CSS. The answer is very simple, use this:CSS input:focus, textarea:focus, select:focus{ outline: none; }123input:focus, textarea:focus, select:focus{ outline: none; } See the Pen Input_remove_outline by Cătălin George Feștilă (@catafest) on CodePen.