gpt4 book ai didi

html - 使 CSS 下拉菜单居中

转载 作者:太空宇宙 更新时间:2023-11-03 18:23:23 25 4
gpt4 key购买 nike

这是我的 CSS 代码。我似乎无法让它居中。我试过使用 display: inline-block 和 float: left。我也尝试过使用边距,但最终会弄乱下拉框。我试过编辑所有内容,但无法正确编辑。我对这种事情有点陌生。我将不胜感激

body {
background-image:url('andromedagalaxy.jpg');
}
h1 {
text-align:center;
color: white;
}
p {
text-align:center;
}
nav ul ul {
display: none;
}

nav ul li:hover > ul {
display: block;
}
nav ul {
background: #0099CC;
background: linear-gradient(top, #0099CC 0%, #bbbbbb 100%);
background: -moz-linear-gradient(top, #0099CC 0%, #bbbbbb 100%);
background: -webkit-linear-gradient(top, #0099CC 0%,#bbbbbb 100%);
box-shadow: 0px 0px 9px rgba(0,0,0,0.15);
padding: 0 20px;
border-radius: 10px;
list-style: none;
position: relative;
display: inline-block;
font-family: "Avant Garde", Avantgarde, "Century Gothic", CenturyGothic, "AppleGothic", sans-serif;
text-align: center;
}
nav ul:after {
content: ""; clear: both; display: block; text-align:center;
}
nav ul li {
float: left;
}
nav ul li:hover {
background: #000066;
background: linear-gradient(top, #000066 0%, #000066 40%);
background: -moz-linear-gradient(top, #000066 0%, #000066 40%);
background: -webkit-linear-gradient(top, #000066 0%, #000066 40%);
}
nav ul li:hover a {
color: #fff;
}

nav ul li a {
display: block; padding: 15px 30px;
color: #000099; text-decoration: none;
}
nav ul ul {
background: #000066; border-radius: 0px; padding: 0;
position: absolute; top: 100%;
}
nav ul ul li {
float: none;
border-top: 1px solid #000066;
border-bottom: 1px solid #000066;
position: relative;
}
nav ul ul li a {
padding: 15px 20px;
color: #fff;
}
nav ul ul li a:hover {
background: #006699;
}
nav ul ul ul {
position: absolute; left: 100%; top:0;
}

最佳答案

因为你正在使用这个:

nav ul {
display: inline-block;
}

要使 ul 居中,您可以在父级上使用 text-align,试试这个:

nav {
text-align:center;
}

您可以查看此链接 http://jsfiddle.net/eb2Zd/6/查看演示文件。

关于html - 使 CSS 下拉菜单居中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21406437/

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