包含页眉和页脚的问题

时间:2015-02-03 18:07:10

标签: php html header include footer

我在尝试使用php include来显示固定页眉和页脚时出现问题

这是我的HTML

<?php include '_includes/header.php' ?>

<div class="neo__wrapper">

    <div class="neo__container">

    </div>

</div>

<?php include '_includes/footer.php' ?>

我的SASS(用于嵌套)

*{
 margin: 0;
 padding: 0;
 text-decoration: none;
 border: 0;
 border: none;
}

html,body{ 
 width: 100%;
 height: 100%;
}

.neo__wrapper{
 width: 100%;
 height: 100%;
 margin: 0 auto;

.neo__container{
     width: 960px;
     height: 3000px;
     margin: 0 auto;
}
}

header{
 background:#ccc;
 width: 100%;
 position: fixed;
 height: 100px; 
 top: 0;
}

footer{
 background:#ccc;
 position: fixed;
 width: 100%;
 height: 50px;
 bottom: 0;
}

我只是构建一个框架,所以我的header.php只是

<header></header>

我的footer.php是

<footer></footer>

基本上,我的页面应该只有一个灰色的固定页眉和页脚

2 个答案:

答案 0 :(得分:0)

你包括一个空文件。

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

另外,如果您在每个页面上都有页眉和页脚,也请将此代码包含在其中。在header.php

<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="MyCSSFile.css">
</head>
<body>

并在footer.php

<footer>
<script src="MyJavascriptFile.js"></script>
</footer>
</body>
</html>

答案 1 :(得分:0)

刚才发现这是一个关于WAMP的问题,所以PHP甚至没有首先运行