6_垂直导航菜单.html 837 B

12345678910111213141516171819202122232425262728293031323334353637
  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. .list{
  10. width: 810px;
  11. height:37px;
  12. background: #f1f1f1;
  13. /* 文本垂直居中 */
  14. line-height: 37px;
  15. text-indent: 20px;
  16. }
  17. .active{
  18. background: #008CBA;
  19. /* 文字颜色 */
  20. color:#fff;
  21. }
  22. .list:hover{
  23. background: #555;
  24. color: #fff;
  25. }
  26. </style>
  27. </head>
  28. <body>
  29. <div class="list active">Home</div>
  30. <div class="list">News</div>
  31. <div class="list">Concat</div>
  32. <div class="list">About</div>
  33. </body>
  34. </html>