gpt4 book ai didi

php - Logo 从页面顶部向下移动。不知道为什么

转载 作者:行者123 更新时间:2023-11-28 14:15:11 25 4
gpt4 key购买 nike

在我的网站上,一个特定页面的 Logo 被微调了几个像素,而在所有其他页面上则没有。所有页面的代码都是相同的(至少我认为是),所以我不确定是什么导致了这个问题。

这是工作与非工作的屏幕截图:

工作:

enter image description here

非工作:

enter image description here

两者的代码如下所示,但是由于某种原因,其中一个页面无法正确呈现

<body>
<div class="wrapper"><?php include("include/header.php"); ?>

header.php:

<header id="header">
<div id="logo">
<h1 class="hidden">Welcome</h1>
</div><!-- #logo -->

<?php include("getstageinfo.php");
switch ($currentStage)
{
case "0":

$home ="period0.php";
break;

case "1":

$home ="period1.php" ;

break;

case "2":

$home ="period2.php" ;

break;

case "3":

$home = "period3.php";

break;

}
?>
<nav id="nav">
<h1 class="hidden">Main Navigation</h1>
<a class="nav-item current" href="<?php echo $home ?>">HOME</a>
<a class="nav-item" href="news.php">NEWS</a>
<a class="nav-item" href="accounts.php">ACCOUNTS</a>
<a class="nav-item" href="logout.php">LOG OUT</a>
<div id="nav_edge">&nbsp;</div><!-- #nav_edge -->
</nav><!-- #nav -->
</header><!-- #header -->

CSS:

body { background-color: #031311; margin: 0px; padding: 0px; width: 100%; position: relative; background-image: url(../images/bg.jpg); background-repeat: no-repeat; background-position: center top; overflow-x:hidden; font-size: 14px; line-height: 1.6em; color: #2a2d32; }
#header { margin: 0px; padding: 0px; width: 100%; height: 350px; display: block; position: relative; overflow: hidden; }
#header #logo { background-image: url(../images/logo.png); background-repeat: no-repeat; background-position: center top; display: block; margin: 0px; padding: 0px; height: 450px; width: 100%; }
#header #nav { position: absolute; height: 50px; width: 455px; left: 50px; top: 298px; background-image: url(../images/nav_bg.png); background-repeat: repeat; background-position: left top; margin: 0px; padding: 0px; border-top-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-color: #8C9791; border-bottom-color: #8C9791; border-left-color: #8C9791; }
#header #nav .nav-item { font-size: 14px; line-height: 50px; color: #E1E7EA; display: inline-block; padding-top: 0px; padding-right: 10px; padding-bottom: 0px; padding-left: 15px; font-style: italic; margin-top: 0px; margin-right: 10px; margin-bottom: 0px; margin-left: 15px; text-shadow: 1px 1px 1px #000; }
#header #nav #nav_edge { background-image: url(../images/nav_edge.png); background-repeat: no-repeat; background-position: left top; display: block; margin: 0px; padding: 0px; height: 52px; width: 40px; position: absolute; top: -1px; right: -40px; }
#header #nav .nav-item:hover, #header #nav .nav-item:focus { color: #FFF; }
#header #nav .nav-item.current { color: #2BD5CC !important; }

这里是生成的用于工作的 html:

enter image description here

这是不工作的:

enter image description here

最佳答案

为了 css 目的,IE7 不同于 IE8,它们都不同于 FIREFOX、CHROME....

我没有看到您使用

为 IE7 指定 css 文件
<!--[if lte IE 7]>
<link href="/css/ie7.css" rel="stylesheet" type="text/css" />
<![endif]-->

您需要在您的页面中为 IE7 使用备用 css

关于php - Logo 从页面顶部向下移动。不知道为什么,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9126841/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com