1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
| <!DOCTYPE html> <html> <head> <title></title> <link rel="stylesheet" type="text/css" href=""> <style type="text/css"> /*去除整个页面中一些边距*/ *{ margin: 0; padding: 0; } /*设置大的div块,此时左右居中*/ .nav{ width: 1050px; height: 65px; margin: auto; } li{ list-style: none; display: inline-block; /*重点1,向左浮动解决<li>之间间隙问题*/ float: left; } a{ display: inline-block; height: 65px; width: 350px; /*重点2,设置a标签中内容所占的高度与外面一样,这样内容就上下居中了*/ line-height: 65px; /*左右居中*/ text-align: center; /*去除下划线*/ text-decoration: none; font-size: 18px; color: white; }
.nav .inner-1{ background-color: #696391; } .nav .inner-2{ background-color: #9385f5; } .nav .inner-3{ background-color: #3c64c2; } </style> </head> <body> <div class="nav"> <ul> <li><a class="inner-1" href="">JAVA WEB</a></li> <li><a class="inner-2" href="">项目实战</a></li> <li><a class="inner-3" href="">微服务/分布式/中间件</a></li> </ul> </div> </body> </html>
|