空间出现在firefox上,但不是chrome?

时间:2015-08-14 01:31:29

标签: html css google-chrome firefox

今天,我决定安装firefox并在firefox而不是google chrome上测试我的导航栏。 Firefox在ontop上显示一个随机空间,而chrome则没有。任何人都知道问题是什么以及如何解决它?

这就是firefox与chrome相比的样子。(抱歉质量不好,我把它调整得很糟糕。)

如果重要,这就是我正在使用的代码:

<html>

<head>
<title>Blitz</title>

<style>
body{
margin: 0px;
padding:0px;
}

.Blitz{
background-color:#2DDEDE;
padding:0px;
margin:0px;
border-color:black;
}

.Navigationbar{
height:40px;
width:500px;
background:#a7e8ee;
border:none;
}


.Navigationbar li{
display:inline;

}


.Navigationbar a{
color:black;
text-decoration:none;
}
</style>

</head>

<body>


<div class="Blitz">
<h1><center>Blitz</center></h1>
<ul>
<div class="Navigationbar">
<li><a href="#">Home</a></li>
<li><a href="#">Forums</a></li>
<li><a href="#">Blog</a></li>
<li><a href="#">Featured</a></li>
<li><a href="#">Sign up</a></li>
<li><a href="#">Login</a></li>
</ul>
</div>
</div>

<div class="information">
<!--Information about the site here. Pictures to go with that-->

</div>

</body>

</html>

0 个答案:

没有答案