Answers for "css input outline radius"

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

Browse Popular Code Answers by Language