HTML CSS examples for CSS Widget:Color
change tab key selection color with css
<html> <head> <style> input:focus {<!-- w w w.j a v a2 s. com--> background-color: yellow; } </style> </head> <body> <p>Click inside the text fields to see a yellow background:</p> <form> First name: <input type="text" name="firstname"> <br> Last name: <input type="text" name="lastname"> </form> </body> </html>