Answers for "how to give bottom border to a input field in 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 give bottom border to a input field in css"

Browse Popular Code Answers by Language