gpt4 book ai didi

css - 水平菜单 - 背景色

转载 作者:行者123 更新时间:2023-11-28 14:54:37 27 4
gpt4 key购买 nike

我有一个水平菜单。我想在菜单周围有一个边框(不是整行,只有空间菜单被覆盖)。当我在 ul 上放置边框时,它覆盖了整行,当我在 li 上放置边框时,它在菜单项之间也有边框。

<ul id="menu" style = "text-align:left;">  

<li>...anchor stuff...
</li><li>...anchor stuff...
</li><li>...anchor stuff...
</li><li>...anchor stuff...
</li><li>...anchor stuff...</li>
</ul>

这是 CSS:

ul#menu
{
padding: 0 0 0px;
position: relative;
margin: 0 0 0;
text-align: right;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
}

ul#menu li
{
display: inline;
list-style: none;
}


ul#menu li a
{
padding: 0px 0px;
margin-right:20px;
font-weight: bold;
text-decoration: none;
line-height: 2.8em;
}

最佳答案

杀死列表项上的 display: inline 并将它们向左浮动。也让容器漂浮起来,这将确保它的宽度与其内容物一样宽。最后,在 ul 上设置 overflow: hidden

关于css - 水平菜单 - 背景色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3950107/

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