7_菜单.html 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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. background: #bebebe;
  11. width: 94px;
  12. height: 33px;
  13. /* 由于a标签是行元素 行元素的特点 宽度是内容撑的 ,不能设置宽高
  14. 所以我们可以将行元素 切换成切换成行级块元素
  15. display:inline-block;
  16. */
  17. /* 赠送 */
  18. display: inline-block;
  19. /* 水平居中 */
  20. text-align: center;
  21. line-height: 33px;
  22. /* 文字颜色 */
  23. color: white;
  24. font-size: 14px;
  25. font-family: PingFangSC-Regular, Verdana, Arial, 微软雅黑, 宋体;
  26. font-weight: 700;
  27. /* 去掉a标签的下划线 */
  28. text-decoration: none;
  29. }
  30. a:hover {
  31. background: #cc0000;
  32. }
  33. </style>
  34. </head>
  35. <body>
  36. <div>
  37. <a href="#">HOME</a><a href="#">NEWS</a><a href="#">ARTICLES</a><a href="#">FORUM</a><a href="#">CONTACT</a><a
  38. href="#">ABOUT</a>
  39. </div>
  40. </body>
  41. </html>