Languages
[Edit]
EN

CSS - add outline to input on focus

0 points
Created by:
Marley-Marks
712

In this article, we would like to show you how to add an outline to input on focus using CSS.

Quick solution:

input:focus {
  outline: 3px solid yellow;
}

 

Practical example

In this example, we add an outline to the input element on focus using :focus CSS pseudo-class with the outline property.

// ONLINE-RUNNER:browser;

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

    input:focus {
      outline: 5px solid yellow;
    }

  </style>
</head>
<body>
  <input type="text">
</body>
</html>

 

References

  1. :focus - CSS: Cascading Style Sheets | MDN
  2. outline - CSS: Cascading Style Sheets | MDN
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