Answers for "change focus border color input"

CSS
17

css remove border input focus

textarea:focus, input:focus{
    outline: none;
}
Posted by: Guest on June-30-2020
0

change input border color when selected

input:focus {
	outline: none;
  	border: 1px solid red;
}
Posted by: Guest on February-05-2021
0

How to change border color of textarea input on :focus

.input:focus {
    outline: none !important;
    border:1px solid red;
    box-shadow: 0 0 10px #719ECE;
  }
Posted by: Guest on September-01-2021

Code answers related to "change focus border color input"

Browse Popular Code Answers by Language