Answers for "how to make input with only bottom border css"

0

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 "how to make input with only bottom border css"

Browse Popular Code Answers by Language