我在导航栏中无法将菜单项与徽标对齐。我的菜单项显示在我的徽标下方和右侧,水平位置正确,我需要向上调整垂直位置,使项目在导航栏中对齐。
HTML
<!DOCTYPE html>
<html>
<head>
<title>Serving Grace - Home</title>
<!-- Stylesheet -->
<link href="Private/stylesheet.css" rel="stylesheet" type="text/css"/>
</head>
<body>
<div id="content">
<nav id="nav">
<ul>
<li><a href="index.html" id="logo"><img src="Logo/logo.png"/></a></li>
<li><a href="index.html">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Volunteer</a></li>
<li><a href="#">Donate</a></li>
<ul>
</nav>
<div id="image">
<img src="Images/Content.png"/>
</div>
<div id="info">
<img src="Images/info.png"/>
</div>
<div id="footer">
<a href="www.facebook.com"><img src="Images/Facebook.fw.png"></a>
<a href="www.twitter.com"><img src="Images/Twitter.fw.png"></a>
<a href="www.google.com"><img src="Images/Google.fw.png"></a>
<p id="copyright">© 2013 Jeffery Evans</p>
</div>
</div>
</body>
</html>
CSS
body {
background-color: #C8C8C8;
}
#content {
width: 1090px;
height: 900px;
background-color: white;
margin-left: auto;
margin-right: auto;
box-shadow: 5px 3px 5px #888;
min-height: 100%;
position: relative;
}
#nav {
background-color: #222222;
height: 100px;
border: 1px solid black;
}
#nav li {
text-decoration: none;
display: inline;
margin: 25px 20px 10px 10px;
font-family: Arial;
color: #F59239;
position: relative;
}
#nav li a {
text-decoration: none;
color: #F59239;
font-family: Arial;
font-size: 18px;
}
#logo {
padding-right: 300px;
position: inline-block;
}
#nav li a:hover {
color: #222222;
}
#image {
top: 100px;
position: relative;
float: left;
left: 15px;
}
#info {
top: 100px;
position: relative;
float: left;
left: 30px;
}
#footer {
display: table-cell;
width: 1090px;
height: 70px;
background-color: #222222;
bottom: 0;
position: absolute;
}
#footer a {
margin-left: 15px;
}
#copyright {
color: white;
text-align: center;
vertical-align: middle;
}
而不是
#nav {
height: 100px;
}
试试
#nav {
line-height: 100px;
}
如果这不起作用,那么也可以尝试使用你的导航li和/或导航的线路高度
最简单的方法就是做一些类似的事情
#logo {
padding-top: 10px;
}
这只会将徽标向下推10倍,相应地调整
如果logo.png非常宽,它可能会将菜单项推到下一行。我试过用小gif作为徽标的代码a,它在Firefox和Chrome中都很好(图像和菜单文本在底部对齐)。