remove border when input text selected code example
Example 1: remove blue border on a input
input:focus {
outline: none !important;
}
Example 2: how to remove input field border outline on focus css
outline = none;
input:focus {
outline: none !important;
}
outline = none;