How to add input box Background Color using CSS

  • Post category:CSS

Get the code of How to add input box Background Color using 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.

First Name:
<input type="text"><br><br>
Last Name:
<input type="text">
input:focus {
  background: yellow;
}