Answers for "how to make focus outline round in html"

CSS
0

how to make focus outline round in html

input:focus {
	outline: none;
  	border: 1px solid blue;
  	border-radius: 10px;
}
Posted by: Guest on June-21-2021

Browse Popular Code Answers by Language