How to remove the outline for input in CSS?


For the <input> tag, whenever I click the input box, a black outline is forming automatically. How to remove that?

<input placeholder="Enter email" />

1 Answer

4 years ago by

To remove that focus when clicked you can use focus pseudo-class

input:focus {
   outline: none;
}
4 years ago by Divya