gpt4 book ai didi

html - 在将容纳我的菜单的 div 中将 Logo 居中时遇到一些问题

转载 作者:太空宇宙 更新时间:2023-11-04 02:58:53 26 4
gpt4 key购买 nike

我有以下 HTML:

<div id="main-menu">
<a id="main-menu-logo" href="index.html">
<span style="color:white;">MY NAME</span>
</a>
<div id="main-menu-items">
......
</div>
</div>

以及以下 CSS:

#main-menu{
margin-left: 1px;
float: left;
height: 40px;
border: 2px solid black;
background-color: rgba(0, 0, 0, 0.8);
width: 120px;
}

#main-menu-items{
display: none;
}

#main-menu-logo {
line-height: 40px;
display: inline-block;
padding-left: 10px;
padding-right: 10px;
text-align: center;
}

如何让主菜单 Logo 在主菜单中居中?

谢谢

最佳答案

您可以使用 display:table 和 margin 居中。

#main-menu-logo {   
line-height: 40px;
display: inline-block;
margin: 0 auto;
display: table;
}

更多信息在这里:How to horizontally center a <div> in another <div>?

关于html - 在将容纳我的菜单的 div 中将 Logo 居中时遇到一些问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31666825/

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