gpt4 book ai didi

css - div 顶部的中心导航

转载 作者:行者123 更新时间:2023-11-28 13:07:57 26 4
gpt4 key购买 nike

我正在尝试将导航选项卡置于 div 之上。基本上,我希望导航以 div 的顶部为中心,每个选项卡之间有一个 2px 的阶段。导航选项卡现在似乎没有位于 .row 的中心。

如有任何帮助,我们将不胜感激!

.row {
margin: 0 auto;
width: 960px;
}

#top-menu{
font-family: "LeagueGothicRegular",sans-serif;
text-align: center;
margin-top:240px;
}

#top-menu li{
display: block;
float: left;
line-height: 1;
margin: 0 17px;
text-align: center;
}

#top-menu a{
font-family: 'LeagueGothicRegular', sans-serif;
background-color: #fff;
border-top-left-radius: 5px;
border-top-right-radius: 5px;
color: #000000;
display: inline-block;
font-size: 1.97em;
line-height: 1;
text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
padding: 6px 18px;
text-decoration: none
}

#top-menu a:hover,
#top-menu .active a{
color: #fff;
background: #E80B44;
}
#top-menu a:hover .nav-arrow{
border-top-color: {{settings.nav_hover_colour}};
}

#top-menu ul .first ul{
left: 0;
}

#top-menu ul ul li{
color: #000000;
display: inline-block;
font-family: 'LeagueGothicRegular', sans-serif;
    text-shadow: 1px 1px 1px transparent;
}

#top-menu ul ul {
font-family: 'LeagueGothicRegular', sans-serif;
display: inline-block;
border: none;
text-shadow: 1px 1px 1px transparent;
}

#top-menu > ul > li {
font-family: 'LeagueGothicRegular', sans-serif;
}

最佳答案

  1. #top-menu lidisplay: block; 更改为 display: inline-block; 并移除 float: left ;
  2. text-align:center; 添加到 #top-menu ul

完成此操作后,当您减少边距时,您的导航将居中。

关于css - div 顶部的中心导航,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15751952/

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