如何有多个按钮,但只有一个在html中有可悬停的下拉列表



我困惑了一段时间。我正在制作一个个人网站,有多个导航按钮,包括一个下拉菜单。当光标悬停在about按钮上时,应触发下拉菜单。我使用W3School的代码作为基础的一部分。然而,我曾尝试过自己创建一个,当我将鼠标悬停在菜单触发的任何按钮上时。我试着用和用,但都不成功。我也尝试创建第二个按钮,但后来遇到了另一个问题,我无法将按钮(Gallery和Contact(放在另一个按钮(About(旁边。下面是HTML,下面是CSS。

<nav class="dropdown">
<button class="about" href="about.html">About </button>
<button class="gallery" href="gallery.html">Gallery </a>
<button class="contact" href="contact.html">Contact </a>
<div class="dropdown-content"> 
<a href="achievements.html">Achievements </a>
<a href="education.html">Education </a>
<a href="hobbies.html">Hobbies </a>
<a href="career.html">Career </a>
</div>
.dropdown{
font-size: 22px;
font-family: "Arvo", serif;
font-weight: bold;
text-align: right;
position:relative;
} 
/* Dropdown Content (Hidden by Default) */
.dropdown-content {
display: none;
position: relative;
background-color: #f1f1f1;
min-width: 160px;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
z-index: 1;
}
/* Links inside the dropdown */
.dropdown-content a {
color: black;
padding: 12px 16px;
text-decoration: none;
display: block;
}.dropdown-content a:hover {
background-color: #ddd;
}
.about:hover .dropdown-content {
display: block;
}
.about:hover {background-color: transparent;
}

您需要更新CSS。下拉内容不是的子项。大约这样做.about:hover .dropdown-content是行不通的。您需要使用通用同胞选择器

将其更新为.about:hover ~ .dropdown-content

编辑

你的HTML也有问题——你正在打开按钮标签,但关闭标签会更新它们,它应该可以

相关内容

  • 没有找到相关文章

最新更新