页眉和页脚问题包括
Issue With Header and Footer Include
我在尝试使用 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>
基本上,我的页面应该只有一个灰色的固定页眉和页脚
您包含一个空文件。
<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>
刚刚发现这是一个关于 WAMP 的问题,所以 PHP 一开始甚至 运行 都没有
我在尝试使用 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>
基本上,我的页面应该只有一个灰色的固定页眉和页脚
您包含一个空文件。
<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>
刚刚发现这是一个关于 WAMP 的问题,所以 PHP 一开始甚至 运行 都没有