Simple CSS Imput Field Color Changer
19/08/2005Have you ever wondered how websites change the color of their input fields when you click on them? Here is an easy to use method you can implement in less than Five Minutes!
All you need to do is add the following code to your style sheet and change the colors to match your what ever you what.
That’s it!
input:focus, textarea:focus, select:focus {
border: 1px solid #666;
background:#ff9;
color:black;
}
Comments are closed.