Languages
[Edit]
EN

CSS - remove outline on focus around text input

3 points
Created by:
Wayne
475

In this article, we would like to show you how to remove the outline on focus around text input using CSS.

Quick solution:

input:focus, textarea:focus {
    outline: none;
}

 

Practical example

In this example, we present how to remove an outline from the input element on focus using :focus CSS pseudo-class with the outline property set to none.

// ONLINE-RUNNER:browser;

<!doctype html>
<html>
<head>
  <style>

    textarea:focus, input:focus {
        outline: none;
    }

  </style>
</head>
<body>
  <div>Get focus on text input below:</div>
  <br />
  <input type="text" />
  <br /><br />
  <textarea></textarea>
</body>
</html>

 

References

  1. :focus - CSS: Cascading Style Sheets | MDN
  2. outline - CSS: Cascading Style Sheets | MDN

Alternative titles

  1. CSS - remove focus border around text input boxes
Donate to Dirask
Our content is created by volunteers - like Wikipedia. If you think, the things we do are good, donate us. Thanks!
Join to our subscribers to be up to date with content, news and offers.
Native Advertising
🚀
Get your tech brand or product in front of software developers.
For more information Contact us
Dirask - we help you to
solve coding problems.
Ask question.

❤️💻 🙂

Join