Advertisement
Guest User

Untitled

a guest
Jan 17th, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.76 KB | None | 0 0
  1. *{
  2. margin:0;
  3. padding:0;
  4. }
  5. header {
  6. width:1200px;
  7. height:300px;
  8. background-color:blue;
  9. }
  10. nav {
  11. width:1200px;
  12. height:200px;
  13. background-color:yellow;
  14.  
  15. }
  16. .contenido{
  17. width:1200px;
  18. height:1000px;
  19. background-color:green;
  20. }
  21. footer {
  22. width:1200px;
  23. height:400px;
  24. background-color:red;
  25. }
  26.  
  27. .dropdown {
  28. position: relative;
  29. display: inline-block;
  30. }
  31.  
  32. .dropdown-content {
  33. display: none;
  34. position: absolute;
  35. background-color: #f9f9f9;
  36. min-width: 160px;
  37. box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  38. padding: 12px 16px;
  39. z-index: 1;
  40. color:white;
  41. }
  42.  
  43. .dropdown:hover .dropdown-content {
  44. display: block;
  45. }
  46. .dropdown-content p:hover {background-color: black}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement