0

Is there a way to stop the input field from lighting up when it's selected with a little css?

Searched this up and couldn't find an answer.

Dan
  • 16
  • 4

2 Answers2

0

Yes, use the following css: outline: none;

Alon Eitan
  • 11,997
  • 8
  • 49
  • 58
0

You are probably referring to outline

https://css-tricks.com/almanac/properties/o/outline/

*:focus {
    outline: 0;
}

How to remove border (outline) around text/input boxes? (Chrome)

Community
  • 1
  • 1
galchen
  • 5,252
  • 3
  • 29
  • 43