8_水平导航.html 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  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. a{
  10. width:94px;
  11. height:33px;
  12. background: #bebebe;
  13. /* float: left; */
  14. text-align: center;
  15. line-height: 33px;
  16. color:#fff;
  17. font-family: PingFangSC-Regular, Verdana, Arial, 微软雅黑, 宋体;
  18. font-size: 14px;
  19. font-weight: bold;
  20. /* 文本修饰 */
  21. text-decoration: none;
  22. /* 多个占一个 可以设置宽高 */
  23. display: inline-block;
  24. /*
  25. display:inline-block 有一个问题:两个行级块元素之间有一个间隙 ?
  26. 解决方式:取到父元素,把父元素中的文字的字体大小设置为0
  27. */
  28. }
  29. a:hover{
  30. background: #cc0000;
  31. }
  32. #container{
  33. font-size: 0;
  34. }
  35. </style>
  36. </head>
  37. <body>
  38. <div id="container">
  39. <a href="#">HOME</a>
  40. <a href="#">NEWS</a>
  41. <a href="#">ARTICLES</a>
  42. <a href="#">FORUM</a>
  43. <a href="#">CONTACT</a>
  44. <a href="#">ABOUT</a>
  45. </div>
  46. </body>
  47. </html>