gpt4 book ai didi

css - 纯 CSS dropup-menu : I have the basics functioning, 但如何让二级 li 元素显示为内联而不是相互叠加?

转载 作者:行者123 更新时间:2023-11-28 10:05:05 24 4
gpt4 key购买 nike

我正在使用这个:http://jsfiddle.net/fJSVz/作为我的基本菜单,它非常适合底部固定菜单。也就是说,我需要显示当您将鼠标悬停在要显示在上方、居中和内联(在一行上)的菜单上时出现的二级列表项,而不是一个在另一个之上。任何线索我需要改变什么才能让它工作?我为此焦头烂额!

<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<title>Dropup Demo</title>


<style type='text/css'>
#navigation {
width: 980px;
height: 38px;
margin-top:100px;
}
#navigation li {
float: left;
position: relative;
width:100px;
border:1px solid red;
} #navigation li:hover { background: silver; }
#navigation li a {
text-transform: uppercase;
color: white;
padding: 13px 33px;
line-height: 38px;
font-size: 11px;


}
#navigation li a:hover { text-decoration: none; }
#navigation li ul {
position: absolute;
display:none;
z-index: 1000;
min-width: 100%;
left:-1px;
}
#navigation li:hover ul {
bottom:20px;
display:block;
background:#eee;
}
#navigation li ul li {
background: none;
width: 100%;
}
#navigation li ul li:hover {
background: none;
background-color: #2a51b5;
}
#navigation li ul li a {
text-transform: uppercase;
color: white;
padding: 8px 10px;
line-height: 28px;
width: 100%;

}
</style>



</head>
<body>
<ul id="navigation">

<li>1</li>

<li>2
<ul>

<li>2.1</li>
<li>2.2</li>
<li>2.3</li>

</ul>
</li>

<li>3</li>

<li>4</li>



</ul>

最佳答案

                   #navigation li  ul {
/*position: absolute;*/
display:none;
z-index: 1000;
min-width: 100%;
left:-1px;
}

Position absolute 是它使 ul 位于 that 之上的原因。

这是一个固定的http://jsfiddle.net/fJSVz/36/ .

关于css - 纯 CSS dropup-menu : I have the basics functioning, 但如何让二级 li 元素显示为内联而不是相互叠加?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14078804/

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