Remove Input Textarea Border or Outline When Focused

By | October 26, 2020

When you click a html input or textarea, you may find there exists a border around them.

Here is an example:

Remove Input Textarea Border or Outline When Focused

How to remove this border? In this tutorial, we will introduce you how to do.

The simplest way is to use css to remove it.

input, textarea{outline:none;}

Then you will find the border is gone.

Leave a Reply