我有一个简单的标题和正文php页面。但是,当我滚动时,内容显示在“Hi”标题后面。
<style type="text/css">
#header {
position:fixed;
z-index:1;
}
#body {
position:relative;
z-index:2;
}
</style>
<header>
<div class="fixed">
<h1> Hi <?php $_POST ["user"] ?> </h1>
<p>Your list: </p>
<p> </p>
</div>
</header>
<body>
<link href="stylesheet2.css" rel="stylesheet" type="text/css">
<?php include_once("analyticstracking.php") ?>
<?php
echo "<p> You are gluten free<br/>"; //AND THE REST OF THE CONTENT?>
有谁知道如何解决这个问题?我尝试了一些事情。我认为这可能是一个非常简单的答案。我很感激任何想法。
答案 0 :(得分:4)