Answers for "html input prevent rounded corners on focus"

CSS
0

css input border radius focus

/* the outline is square on focus to change do this*/
.my_input {
  border: 1px solid blue;
  border-radius:3px;
}
.my_input:focus {
  outline: none;
}
Posted by: Guest on May-20-2021
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