Answers for "css input outline color"

CSS
1

change input border color when selected

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

input outline focus

input:focus, textarea:focus {
    background-color: #FFFF66;
    border: 1px solid #F47E58;
}
Posted by: Guest on October-16-2020

Browse Popular Code Answers by Language