Guest User

Untitled

a guest
Jan 20th, 2019
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. div.navbar ul li p {
  2. padding-bottom: 19px;
  3. }
  4. div.navbar ul li div.maxhead {
  5. transition: height 0.3s;
  6. -moz-transition: height 0.3s; /* Firefox 4 */
  7. -webkit-transition: height 0.3s; /* Safari and Chrome */
  8. -o-transition: height 0.3s; /* Opera */
  9. height: 0px;
  10. width: 1000px;
  11. opacity: 0;
  12. overflow: hidden;
  13. }
  14.  
  15. div.navbar ul li:hover div.maxhead {
  16. height: 400px;
  17. width: 1000px;
  18. position: relative;
  19. background-color: #ff0000;
  20. overflow: hidden;
  21. opacity: 1;
  22. transition: all 0.3s;
  23. -moz-transition: all 0.3s; /* Firefox 4 */
  24. -webkit-transition: all 0.3s; /* Safari and Chrome */
  25. -o-transition: all 0.3s; /* Opera */
  26. }
Add Comment
Please, Sign In to add comment