12345678910111213141516171819202122232425262728293031323334353637 |
- <!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>
- .list{
- width: 810px;
- height:37px;
- background: #f1f1f1;
- /* 文本垂直居中 */
- line-height: 37px;
- text-indent: 20px;
- }
- .active{
- background: #008CBA;
- /* 文字颜色 */
- color:#fff;
- }
- .list:hover{
- background: #555;
- color: #fff;
- }
- </style>
- </head>
- <body>
- <div class="list active">Home</div>
- <div class="list">News</div>
- <div class="list">Concat</div>
- <div class="list">About</div>
- </body>
- </html>
|