6_垂直导航.html 831 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <title>Document</title>
  8. <style>
  9. div {
  10. width: 810px;
  11. height: 37px;
  12. background: #f1f1f1;
  13. line-height: 37px;
  14. text-indent: 20px;
  15. /* 鼠标划入手状 */
  16. cursor:pointer;
  17. }
  18. .active{
  19. background: #008CBA;
  20. color:#fff;
  21. }
  22. .list:hover{
  23. background: #555;
  24. color: #fff;
  25. }
  26. </style>
  27. </head>
  28. <body>
  29. <div class="active">Home</div>
  30. <div class="list">News</div>
  31. <div class="list">Contact</div>
  32. <div class="list">About</div>
  33. </body>
  34. </html>