Answers for "how button focus outline css rounded edges"

CSS
1

css button:focus border-radius square

button:focus {
  outline: none;
}
Posted by: Guest on December-02-2020
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