Answers for "css click text field change border color"

CSS
1

change input border color when selected

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

Code answers related to "css click text field change border color"

Browse Popular Code Answers by Language