Answers for "css border-color not working in input"

CSS
1

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