我正在尝试第一次设计一个网站。我正试图在右侧设置一种导航栏的东西,但我无法正确定位它。当我使用边距或填充时,只有边距和填充与顶部,右侧和左侧一起使用。当我尝试使用padding-bottom或margin-bottom尝试更好地居中时,没有任何反应。任何帮助将不胜感激!。
这基本上就是我试图模仿的导航栏:http://pixelbot.ro/
我的HTML:
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="stylesheet" href="../CSS/Reset.css" />
<link rel="stylesheet" href="../CSS/main.css" />
<link rel="shortcut icon" href="../Img/icon.png" />
<title>Title</title>
</head>
<body>
<div class="nav">
<h1 class="header">testheader</h1>
<ul class="navbar">
<li class="navbar"><a href="http://www.twitter.com" class="navitem">Twitter</a></li>
<li class="navbar"><a href="http://www.facebook.com" class="navitem">Facebook</a></li>
<li class="navbar"><a href="http://www.github.com" class="navitem">GitHub</a></li>
<li class="navbar"><a href="http://www.com" class="navitem">Home</a></li>
</ul>
</div>
</body>
</html>
和我的CSS:
body {
}
.header {
color: white;
font-family: Myriad Pro;
margin-top: .5em;
margin-left: 2em;
font-size: 3em;
}
.nav {
position: absolute;
width: 100%;
height: 6em;
background: #353535;
}
.navbar {
position: relative;
display: block;
float: right;
padding-left: 30px;
}
.navitem {
margin: 30px;
text-decoration: none;
color: white;
padding: .5em;
text-align: center;
vertical-align: middle;
}
答案 0 :(得分:0)
不要保留.header
类块元素(div默认设置为display:block
),它会强制其他元素降低,将其更改为display:inline-block
这样它就不会占据整个宽度。
使用margin-bottom:
&amp;设置保证金的margin-top:
属性&amp;请注意,顶部和底部元素上的相等边距不会导致元素处于准确的中心位置,因为通常字体行高从底部到顶部更多。
CSS:
.header {
color: #FFFFFF;
display: inline-block;
font-family: Myriad Pro;
font-size: 3em;
line-height: 1em;
margin-bottom: 22px;
margin-left: 2em;
margin-top: 0.5em;
}
.nav {
background: none repeat scroll 0 0 #353535;
position: absolute;
width: 100%;
min-width: 980px;
}
.navbar {
display: block;
float: right;
margin-top: 18px;
padding-left: 30px;
position: relative;
}
.navitem {
color: #FFFFFF;
margin: 30px;
padding: 0.5em;
text-align: center;
text-decoration: none;
vertical-align: middle;
}