Answers for "focus style css rounded corners"

CSS
1

css focus border radius

element:focus{border-radius:25px;}
Posted by: Guest on December-29-2019
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