Answers for "input color border 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
0

how to round input border

border-radius:px,%
Posted by: Guest on November-27-2020

Code answers related to "input color border radius"

Browse Popular Code Answers by Language