我无法将此导航栏设为中心。请帮忙。
这是我的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并将余量设置为auto但这并没有奏效。我不知道该怎么做。
答案 0 :(得分:2)
首先,根据您的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%;
}
答案 1 :(得分:0)
我认为你的自动边距不起作用的原因是你需要在你的包装上定义一个宽度。还要确保使用正确的选择器#作为id和。上课。以下是关于导航中心的ID。
<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;
}
答案 2 :(得分:0)
你几乎拥有它,使用:
.nav {
display: block;
margin: 0 auto;
width: 100%;
max-width: 960px;
}
您只需调整max-width
即可将导航栏移动到中心(取决于页面容器的宽度)。
<强> See Example 强>