1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Document</title>
- <style>
- a {
- background: #bebebe;
- width: 94px;
- height: 33px;
- /* 由于a标签是行元素 行元素的特点 宽度是内容撑的 ,不能设置宽高
- 所以我们可以将行元素 切换成切换成行级块元素
- display:inline-block;
- */
- /* 赠送 */
- display: inline-block;
- /* 水平居中 */
- text-align: center;
- line-height: 33px;
- /* 文字颜色 */
- color: white;
- font-size: 14px;
- font-family: PingFangSC-Regular, Verdana, Arial, 微软雅黑, 宋体;
- font-weight: 700;
- /* 去掉a标签的下划线 */
- text-decoration: none;
- }
- a:hover {
- background: #cc0000;
- }
- </style>
- </head>
- <body>
- <div>
- <a href="#">HOME</a><a href="#">NEWS</a><a href="#">ARTICLES</a><a href="#">FORUM</a><a href="#">CONTACT</a><a
- href="#">ABOUT</a>
- </div>
- </body>
- </html>
|