Guest User

Untitled

a guest
Dec 10th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. /**
  2. * 导航练习1
  3. */
  4. body{
  5. background:#929292;
  6. }
  7.  
  8.  
  9.  
  10. #nav li{
  11. list-style:none;
  12. float:left;
  13. margin:0;
  14. padding:0;
  15. }
  16. a{
  17. text-decoration:none;
  18. text-align:center;
  19. display:block;
  20. padding:10px;
  21.  
  22. }
  23. a:hover{
  24. color:red;
  25. background:#fff;
  26.  
  27. }
  28.  
  29. #nav ul{
  30. background:linear-gradient(top center,#ddd,#fff);
  31. position:absolute;
  32. width:50px;
  33. display:none;
  34. margin:0;
  35. padding:0;
  36. border-bottom-left-radius:3px;
  37. border-bottom-right-radius:3px;
  38. }
  39. #nav ul ul{
  40. position:absolute;
  41. left:48px;
  42. top:50px;
  43.  
  44. }
  45. #nav li:hover >ul{
  46. display:block;
  47. }
  48. #nav>li{
  49. background:linear-gradient(top center,#ddd,#fff);
  50.  
  51. }
Add Comment
Please, Sign In to add comment