Answers for "html color input no border"

CSS
12

remove blue border on a input

input:focus {
    outline: none !important;
}
Posted by: Guest on April-16-2020
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