0
我是web開發新手抱歉。好吧,所以我想讓HTML和CSS菜單在你點擊時放下。我谷歌和所有我能找到的菜單,當你將鼠標懸停在它們上面時,製作下拉菜單
基本上我想要的東西,像this
到目前爲止,我已經嘗試過這種
CSS
.menu-item {
background: #fff;
width: 50px;
}
.menu-item ul {
background: #fff;
font-size: 13px;
line-height: 30px;
list-style-type: none;
overflow: hidden;
padding: 0px;
}
.menu-item ul {
background: #fff;
font-size: 13px;
line-height: 30px;
height: 0px;
list-style-type: none;
overflow: hidden;
padding: 0px;
}
.menu-item:focus ul {
height: 93px;
}
.menu-item h4 a {
display: block;
text-decoration: none;
width: 200px;
cursor: pointer;
}
HTML
<div class="menu-item">
<h4>▼</h4>
<ul>
<li><a href="#">Settings</a></li>
<li><a href="#">Log Out</a></li>
</ul>
</div>
我也將非常高興,如果你們能給我鏈接到任何教程,這將幫助我做這個菜單。
當Javascript被禁用時,每個web解決方案都應該保持完整的功能。 – Nit
我有一個問題。是js文件需要使CDN中的easydropdown工作可用嗎? –