0

就像标题说的那样,在 IE 中,一个图像显示了两次,但在其他浏览器中却完美显示。现在奇怪的是它在我的 5 个页面中的 2 个上显示错误。虽然代码对所有人都是一样的。

问题是两个导航部分的 html 代码完全相同,它们从同一个 css 文件中获取图像。

任何人都可以检查可能有什么问题吗?

CSS:

a img
{
border:none;
}

body {
font-family: Arial, Helvetica, sans-serif;
font-size: 12px;
color: #7f7e7e;
margin: 0px;
padding: 0px;
background-color: #ffffff
background-image: url(images/#####.pg);
background-repeat: repeat-x

}

#container {
width: 1200px;
margin: auto;
overflow: hidden;
}

#header {
width: 1200px;
height: 130px;
}



#logo {
background-image: url(../images/logo.png);
background-repeat: no-repeat;
width: 425px;
height: 87px;
margin-top: 28px;
margin-left: 128px;
float: left;
}

#logo_des {
background-image: url(../images/logo2.png);
background-repeat: no-repeat;
width: 311px;
height: 57px;
float: right;
margin-top: 57px;
margin-right: 37px;
}




.nav_menu li { 
list-style: none;
display: inline;
margin-left: 159px;
line-height: 40px;


}

HTML:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head> <title> x</title>

    <link href = "styles.css" rel="stylesheet" type="text/css" />


</head>

<body>
<a name="top">
<div id="container"> <!-- BEGIN CONTAINER -->
<div id="header"> <!--BEGIN HEADER -->
<div id="logo"><!-- BEGIN LOGO -->
</div><!-- END LOGO -->     

<div id="logo_des"> <!-- BEGIN LOGO DESCRIPTION -->
</div> <!--END LOGO DESCRIPTION -->

</div> <!--END HEADER-->

<div id="navigation_line"> <!-- BEGIN NAVIGATION_LINE -->
<div id="menu"> <!--BEGIN MENU-->

<ul class="nav_menu">
<li><a href="index.html">Home</a></li>
<li><a href="about_x.html">About x</a></li>
<li><a href="our_services.html">Our Services</a></li>
<li><a href="contact_us.html">Contact Us</a></li>
<li><a href="partners.html">Partners</a></li>
</ul>   
</div> <!-- END NAVIGATION_LINE -->
</div> <!--END MENU--> `
4

2 回答 2

1

我太傻了,我忘了把它通过验证器。修正了一些错误,现在完成了。

很抱歉浪费您的时间。

于 2012-08-06T11:49:14.783 回答
0

You need to close some of your open tags :)

于 2012-08-06T12:51:32.823 回答