2

我的网页上有四个 div;页眉、菜单、内容和页脚。在 IE 中,所有内容都正确嵌套显示,但在 Chrome 中,页脚与菜单和内容 div 之间存在小间隙。我试过把

margin:0;
padding:0;

一切都没有改变。这是我的问题的一些图像:

在 Chrome 中(显示不正确):

在此处输入图像描述

在 IE 中(正确显示):

在此处输入图像描述

为什么会这样?这是我的 HTML:

<?php include "headermysql.php"?>
<!DOCTYPE html>
<html>
<head>
<title>Home</title>
<script type = "text/javascript">
function to_login_page()
{
window.location.assign("http://127.0.0.1/sxp/login.php");
}
function to_signup_page()
{
window.location.assign("http://127.0.0.1/sxp/signup.php");
}
</script>
<link rel = "stylesheet" type = "text/css" href = "textstyles.css">
</head>
<body>
<?php include "headerhtml.php";?>
<div class = "menu">
<p>menu</p>
</div>
<div class = "content">
<?php
//irrelevant PHP 
?>
<a class = "main" href = "post.php">Post new topic</a>
</div>
<div class = "footer">
<p class = "footer">Copyright Stafford King 2013</p>
</div>
</body>
</html>

这是我的CSS:

.error
{
font-weight:bold;
font-family:Courier New;
color:red;
text-align:left;
font-size:20px;
margin:0;
padding:0;
}
.main
{
font-family:Courier New;
font-size:15px;
text-align:left;
color:black;
margin:0;
padding:0;
}
a.main
{
font-family:Courier New;
font-size:15px;
text-align:left;
color:#000066;
margin:0;
padding:0;
}
a.searchresult
{
font-family:Courier New;
font-size:15px;
text-align:center;
color:#000066;
margin:0;
padding:0;
}
p.footer
{
text-align:center;
font-family:Courier New;
font-size:15px;
color:#000000;
}
div.header
{
height:150px;
background-color:#008AC8;
margin:0;
padding:0;
}
div.menu
{
float:left;
width:200px;
height:800px;
background-color:#64BCE2;
margin:0;
padding:0;
}
div.content
{
height:800px;
background-color:#F9F9D9;
margin:0;
padding:0;
}
div.footer
{
height:20px;
background-color:#008AC8;
margin:0;
padding:0;
}
h2.main
{
font-family:Cambria;
font-size:35px;
color:black;
text-align:center;
margin:0;
padding:0;
}
.searchresult
{
font-family:Courier New;
font-size:15px;
text-align:center;
color:black;
margin:0;
padding:0;
}
body{margin:0;}

对不起,很长的帖子。感谢所有帮助。

4

4 回答 4

2

页脚中的部分可能存在问题,<p>因为您的页脚高度为 20 像素,内部字体为 15 像素,但<p>我认为默认情况下有一些边距顶部和底部。您应该将其设置为 0px;

p.footer
{
text-align:center;
font-family:Courier New;
font-size:15px;
color:#000000;
margin:0px;
}
于 2013-05-30T11:44:43.360 回答
0

您只需要在您的 css 文件中添加以下 css。

*{padding:0; margin:0;}
于 2013-05-30T11:47:34.887 回答
0

当我执行您的示例时,它在 Internet Explorer 中也是错误的。您可以通过添加一个来解决您的问题

显示:内联;

到 p.footer 部分

于 2013-05-30T11:47:55.000 回答
0

字体似乎总是导致这个问题,但我敢肯定,如果你设置它,它会处理它

line-height: 0px;
于 2017-06-04T15:17:30.200 回答