How to add Border on input Hover CSS

  • Post category:CSS

Get the code of How to add Border on input Hover CSS and watch video tutorials. You can practice using our code editor. Our practical guide will make your learning journey much easier. You can explore the tutorial and learn.

<input type="text">
input {
  border: 3px solid #ccc;
}
input:focus {
  border: 3px solid red;
  outline: none;
}