我已经在这个导航栏上工作了一段时间,我修复了一些(之前真的很糟糕)但仍然有空白(这里有其他主题与此相关但不是这个问题或答案没有'不工作)。这是我忘记做的事情吗?我是否设置了边距而我只是看不到它?
它的样子:http ://www.orikina.com/hm/
CSS:
.nav {
width: 100%;
height: 35px;
background-color:#2D2D2D;
border-bottom: #000000;
border-width: 1px;
float: left;
}
.nav, ul{
list-style-type:none;
margin:0;
padding:0;
}
.nav, ul, li{
display:inline;
}
.nav, ul, li, a{
text-decoration: none;
font-size: 17px;
color: #BBBBBB;
display: inline-block;
}
.nav, ul, li, a:hover{
color:#FFFFFF;
}
HTML:
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="css/m.styles.css">
</head>
<body>
<div class="nav">
<ul>
<li><a href="#">Home</a></li>
</ul>
</div>
<!-- End of NAVBAR -->
</body>
</html>
提前致谢!-蒂姆