Guest User

Untitled

a guest
May 27th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. /* Example of how to make use of the 'active' CSS class...
  2. - by default make the text light (#999)
  3. - when active make the text dark (#111) */
  4.  
  5. input[type=text] {
  6. color: #999;
  7. }
  8. input.active[type=text] {
  9. color: #111;
  10. }
Add Comment
Please, Sign In to add comment