dwhite440
6/7/2017 - 11:32 AM

Input element without outline border -From https://stackoverflow.com/questions/37465458/input-text-field-with-only-bottom-border

input {
  outline: 0;
  border-width: 0 0 2px 0;
  border-color: blue
}
input:focus {
  border-color: green
}