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 59 60
| <style> ul { list-style-type: none; overflow: hidden; background-color: blue; } li { float: left; } li a, drop-button { display: inline-block; color: white; text-align: center; padding: 20px 20px; text-decoration: none; } li a:hover, .drop-down:hover{ background-color: cornflowerblue; }
.dropdown { display: inline-block; } .drop-downcontent { display: none; color: #008080; position: absolute; background-color: blue; top: 64px; min-width: 250px; box-shadow: 0px 10px 20px 0px rgba(0,0,0,0,0.1); } .drop-downcontent a { padding: 20px 20px; text-decoration: none; display: block; } .drop-downcontent a:hover { background-color: cornflowerblue; } .dropdown:hover .drop-downcontent { display: block; } </style> <body> <ul> <li><a href="#" style="text-decoration: none;">首页</a></li> <li><a href="#" style="text-decoration: none;">文章</a></li> <li><a href="#" style="text-decoration: none;">归档</a></li> <div class="dropdown"> <li><a href="#" class="drop-button">关于</a></li> <div class="drop-downcontent"> <a href="#" style="color: white;">创始人团队</a> <a href="#" style="color: white">投资者关系</a> </div> </div> </ul> </body>
|