如何将响应导航栏居中



我无法将此导航栏居中。请帮忙。

这是我的html:

<div class="nav">
            <ul id="menu">
                <li><a href="home.html">Home</a></li>
                <li><a href="latestnews.html">Latest News</a></li>
                <li><a href="resultsevents.html">Results & Events</a></li>
                <li><a href="fundraising.html">Fundraising</a></li>
                <li><a href="gallery.html">Gallery</a></li>
            </ul>
</div> 

这是我的css:

#nav {
margin:0px auto; }
ul {
display: inline-block;
list-style-type:none;
margin:0 auto;
padding:0;
position: absolute; }
li {
display:inline;
float: left;
margin-right: 1px; }
li a {
display:inline-block;
min-width:140px;
height: 50px;
text-align: center;
line-height: 50px;
font-family: Century Gothic, Candara, Tahoma, sans-serif;
color: #fff;
background: #2f3036;
text-decoration: none; }
li:hover a {
background: #659d32; }
li:hover ul a {
background: #f3f3f3;
color: #2f3036;
height: 40px;
line-height: 40px; }
li:hover ul a:hover {
background: #659d32;
color: #fff; }
li ul {
display: none; }
li ul li {
display: block;
float: none; }
li ul li a {
width: auto;
min-width: 100px;
padding: 0 20px; }
ul li a:hover + .hidden, .hidden:hover {
display: block; }
.show-menu {
font-family: Century Gothic, Candara, Tahoma, sans-serif;
text-decoration: none;
color: #fff;
background: #659d32;
text-align: center;
padding: 10px 0;
display: none; }
input[type=checkbox]{
display: none; }
input[type=checkbox]:checked ~ #menu{
display: block; }
@media screen and (max-width : 760px){
ul {
    position: static;
    display: none;
}
li {
    margin-bottom: 1px;
}
ul li, li a {
    width: 100%;
}
.show-menu {
    display:block;
}
}

我试着在整件事周围添加一个div,并将margin设置为auto,但没有成功。我不知道该怎么办。

首先,根据您的html,您的目标是#nav,而它是.nav

然后你需要为你的导航父项设置一个宽度,以便有一个居中的位置。

工作示例

.nav {
    margin:0px auto;
    width:705px;
}

编辑:由于您的列表项和链接没有响应,因此在父导航中添加百分比是没有意义的。

你可以使用这样的东西来进行以响应为中心的导航:

.nav {
    margin:0px auto;
    width:90%;
}
ul {
    list-style-type:none;
    padding:0;
}
li {
    float: left;
    width:18%;
}
li a {
    width:100%;
}

我认为自动边距不起作用的原因是因为你需要在包装上定义一个宽度。还要确保您使用了正确的id和选择器#。上课。以下是如何使导航居中。

jsFiddle

<div class="wrapper">
<div class="nav">
            <ul id="menu">
                <li><a href="home.html">Home</a></li>
                <li><a href="latestnews.html">Latest News</a></li>
                <li><a href="resultsevents.html">Results & Events</a></li>
                <li><a href="fundraising.html">Fundraising</a></li>
                <li><a href="gallery.html">Gallery</a></li>
            </ul>
</div> 
</div>

将此添加到您的css中:

.wrapper {
    width:80%;
    margin-left:auto;
    margin-right:auto;
}

您几乎拥有了它,使用:

.nav {
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 960px;
}

您只需调整max-width即可将导航栏移动到中心(取决于页面容器的宽度)。

参见示例

相关内容

  • 没有找到相关文章

最新更新