How to remove a border from input:focus . Used by Bootstrap. Styles of type input:focus { border: none; } input:focus { border: none; } do not work.
input:focus
input:focus { border: none; }
input:focus {outline: none;}
The border property is not the only way to stroke an element. In your case, the stroke is set using outline . Turn it off.
input:focus { outline: none; }
<input type='text' autofocus />
Source: https://ru.stackoverflow.com/questions/706350/More articles:How to implement Dependency Injection?How to set the value in the default form field in Angular 2+?Docker dependencies and disk spaceDisplay question symbols [duplicate]The application crashes SIGSEGV when checking Date for validity or NULLHow to change the style when scrolling?Hiding a virtual function of a base class by a static function in a derived classHow to use ActionColumn to hide / show buttons on a specific line?getSession (). getAttribute (“...”) = null?preg_replace () replace only the first result why?All Articles
input:focus {outline: none;}try - Dan the Hat