color input no border html code example
Example 1: remove blue border on a input
input:focus {
outline: none !important;
}
Example 2: change input border color when selected
input:focus {
outline: none;
border: 1px solid red;
}
input:focus {
outline: none !important;
}
input:focus {
outline: none;
border: 1px solid red;
}