🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
~~~ style{ *{margin:0;padding:0} .parent{ line-height: 50px; background: powderblue; list-style: none; } a{ text-decoration: none; } li { float: left; width: 100px; text-align: center; } .row::after{ content:""; display: table; clear: both; } .drop{ position: relative; } .drop-content{ position: absolute; width: 100px; background: paleturquoise; } .none{ display: none; } .drop-content a{ display: block; } .drop:hover .drop-content{ display: block; } } ~~~ ~~~ <body> <ul class="row parent"> <li> <a href="#">手机</a> </li> <li class="drop" id="test"> <a href="#">电脑</a> <div class="drop-content none"> <a href="#">苹果手机</a> <a href="#">小米手机</a> <a href="#">华为手机</a> </div> </li> <li> <a href="#">平板</a> </li> </ul> </body> ~~~ ![](https://box.kancloud.cn/d43899ed201776cd5c5149c5031a7e27_373x312.gif)