Guest User

Untitled

a guest
Apr 21st, 2018
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. ul {
  2. margin: 0;
  3. padding:0;
  4. list-style: none;
  5. width: 200px;
  6. border-bottom: 1px solid #CCCCEE;
  7. }
  8.  
  9. ul li{
  10. position: relative;
  11. }
  12.  
  13. li ul{
  14. position: absolute;
  15. left: 199px;
  16. top: 0;
  17. display: none;
  18. }
  19.  
  20. ul li a {
  21. display: block;
  22. text-decoration: none;
  23. color: #FFFFEE;
  24. background: #BBBBBB;
  25. padding: 5px;
  26. border: 1px solid #CCCCEE;
  27. border-bottom: 0;
  28. }
  29.  
  30. ul li a:hover {
  31. color: yellow;
  32. background:green;
  33. }
  34.  
  35. li ul li a {
  36. padding: 3px 5 px;
  37. }
  38.  
  39. li:hover ul,li:hover ul {
  40. display: block;
  41. }
  42.  
  43. *html ul li { float: left; height: 1%;}
  44. *html ul li a { height: 1%}
Add Comment
Please, Sign In to add comment