Guest User

Untitled

a guest
Sep 20th, 2018
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. /**
  2. * Pure CSS Clickable Dropdown
  3. */
  4.  
  5. .wrapper {
  6. position: relative;
  7. }
  8.  
  9. .wrapper:active .content {
  10. display: block;
  11. }
  12.  
  13. .button {
  14. background: yellow;
  15. height: 20px;
  16. width: 150px;
  17. cursor: pointer;
  18. }
  19.  
  20. .content {
  21. display: none;
  22. }
  23.  
  24. .content:hover {
  25. display: block;
  26. }
  27.  
  28. .content {
  29. position: absolute;
  30. padding-top: 20px;
  31. }
  32.  
  33. .content li {
  34. background: red;
  35. }
Add Comment
Please, Sign In to add comment