Answers for "border bottom for input when focused"

1

input text field with only bottom border

input {
  outline: 0;
  border-width: 0 0 2px;
  border-color: blue
}
input:focus {
  border-color: green
}
Posted by: Guest on March-21-2021

Code answers related to "border bottom for input when focused"

Browse Popular Code Answers by Language