gpt4 book ai didi

html - 水平下拉菜单悬停

转载 作者:行者123 更新时间:2023-11-28 12:21:36 25 4
gpt4 key购买 nike

我厌倦了从 this tuts 构建水平下拉菜单和 demo

我希望菜单看起来像这样:

enter image description here

我想让子菜单出现在右边的父菜单中,http://alistapart.com/article/horizdropdowns#snippet4

下一步是子菜单。我们希望每个子菜单都显示在其父菜单项悬停时的右侧。

li ul {
position: absolute;
left: 149px;
top: 0;
display: none;
}

但是我的子菜单没有出现在它的父菜单的右边,看起来像:

enter image description here

here jsfiddle

最佳答案

删除 ul 隐藏列表的现有样式并添加以下类:subdrop-list

然后添加这个 CSS:

.subdrop-list {
display: none;
position: relative;
}
.subdrop-list ul {
position: absolute;
top: 0;
right: 0;
}

JSFiddle:http://jsfiddle.net/4jVtw/3/

关于html - 水平下拉菜单悬停,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18825883/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com