Guest User

Untitled

a guest
Feb 18th, 2019
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. <div>
  2. I cannot be focused.
  3. </div>
  4.  
  5. <div tabindex="0">
  6. I am focusable.
  7. </div>
  8.  
  9. div:focus {
  10. background: green;
  11. }
  12.  
  13. div:active {
  14. color: orange;
  15. }
  16.  
  17. div:focus:active {
  18. font-weight: bold;
  19. }
  20.  
  21. <style type="text/css">
  22. input { font-weight: normal; color: black; }
  23. input:focus { color: green; outline: 1px solid green; }
  24. input:active { color: red; outline: 1px solid red; }
  25. </style>
  26.  
  27. <input type="text"/>
  28. <input type="text"/>
Add Comment
Please, Sign In to add comment