Advertisement
Guest User

Untitled

a guest
Aug 23rd, 2016
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. #menu{
  2. width: 720px;
  3. display: block;
  4. }
  5. #menu > ul{
  6. display: inline-block;
  7. width: 100%;
  8.  
  9. }
  10. ul{
  11. list-style: none;
  12. }
  13. #menu>ul>li{
  14. display: inline-block;
  15. }
  16. ul>li>ul{
  17. position: absolute;
  18. left: auto;
  19. bottom: auto;
  20. display: table;
  21. margin-top: auto;
  22. padding: 5px,5px;
  23. background: red;
  24. }
  25.  
  26. a{
  27. background: red;
  28. color: white;
  29. text-decoration: none;
  30. }
  31. a:hover, .current{
  32. background: white;
  33. color: red;
  34. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement