Answers for "how to get border colur change which input element is active in html"

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 "how to get border colur change which input element is active in html"

Browse Popular Code Answers by Language