gpt4 book ai didi

HTML+css 下拉居中

转载 作者:行者123 更新时间:2023-11-28 14:59:52 26 4
gpt4 key购买 nike

我有这个菜单:

#navbar {
text-align: center;
margin: auto;
padding: 0;
height: 1em;
}
#navbar li {

list-style: none;
float:left; }
#navbar li a:hover{
background-color: #CCC;
}
#navbar li a {
border: 1px solid #000;
display: block;
margin-right: 18px;
margin-left: 18px;
padding: 3px 8px;
background-color: #FFF;
color: #000;
text-decoration: none; }
#navbar li ul {
display: none;
width: 10em; /* Width to help Opera out */
}
#navbar li:hover ul {
display: block;
position: absolute;
margin: 0;
padding: 0; }
#navbar li:hover li {
float: none; }
#navbar li:hover li a {
background-color: #FFF;
border-bottom: 1px solid #000;
color: #000; }
#navbar li li a:hover {
background-color: #CCC; }


<ul id="navbar">
<li><a href="index.php">Start</a></li>
<li><a href="index.php">Vad?</a></li>
<li><a href="index.php">Kom igång!</a></li>
<li><a href="#">Läringsartikler</a><ul>
<li><a href="#">Subitem One</a></li>
<li><a href="#">Second Subitem</a></li>
<li><a href="#">Numero Tres</a></li></ul>
</li>
<li><a href="#">Läringsfilmer</a><ul>
<li><a href="#">Subitem One</a></li>
<li><a href="#">Second Subitem</a></li>
<li><a href="#">Numero Tres</a></li></ul>
</li>
</ul>

正如您在导航栏中看到的那样 { 我尝试使用 text-align: center 或 margin:auto 但它仍然不会使整个菜单居中..为什么?当我将导航栏 li 更改为 float 中心而不是 float 左侧时,它会使整个菜单变得愚蠢大

最佳答案

您需要在导航栏 ul 上指定宽度。

#navbar {
text-align: center;
margin: auto;
padding: 0;
height: 1em;
width: 400px;
}

关于HTML+css 下拉居中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2677797/

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