1 Star 0 Fork 0

FirePotatoBox/HTML

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
导航栏.html 1.86 KB
一键复制 编辑 原始数据 按行查看 历史
FirePotatoBox 提交于 2020-05-27 13:38 . first
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>导航栏</title>
<script src="" type="text/javascript"></script>
<link href="" rel="stylesheet" type="text/css">
<style>
* {
margin: 0;
padding: 0;
}
ul,
li {
list-style: none;
cursor: pointer;
}
body {
background-color: chartreuse;
}
.header {
background-color: black;
width: 100%;
height: 60px;
color: #fff;
}
.caidan1>li {
width: 120px;
height: 60px;
line-height: 60px;
text-align: center;
float: left;
border-right: 1px solid #fff;
}
.caidan2>li {
height: 0;
overflow: hidden;
background-color: rgb(6, 166, 240);
border-bottom: 1px solid #fff;
box-sizing: border-box;
transition: 0.4s ease-in-out;
}
.caidan1>li:hover .caidan2>li {
height: 60px;
}
.caidan2>li:hover {
border: 1px solid #fff;
}
</style>
</head>
<body>
<div class="header">
<ul class="caidan1">
<li>菜单一
<ul class="caidan2">
<li>菜单二</li>
<li>菜单二</li>
<li>菜单二</li>
</ul>
</li>
<li>菜单一
<ul class="caidan2">
<li>菜单二</li>
<li>菜单二</li>
<li>菜单二</li>
</ul>
</li>
</ul>
</div>
</body>
</html>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
HTML
1
https://gitee.com/FirePotatoBox/HTML.git
git@gitee.com:FirePotatoBox/HTML.git
FirePotatoBox
HTML
HTML
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385