Answers for "html css input border color hover"

CSS
0

change input border color when selected

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

Browse Popular Code Answers by Language