我的PHP包含没有出现在我的页脚中,无法找出原因。当我打开包含文件时,它工作正常。有什么建议?它与其他文件的导航代码相同,但我只是从网站顶部的导航栏将其移动到页脚。在这种情况下导航工作。
PHP文件:
<div id="footer">
<div id="navigation">
<?php require_once ("navigation.inc.php"); ?>
</div>
</div>
&#13;
导航文件:
<div id="navigation">
<a href="test.php" target="_self">Home</a>
</div>
&#13;
CSS文件:
#footer {
position: absolute;
clear: left;
height: 60px;
width: 100%;
text-align: center;
line-height: -5px;
padding: 0px 0px 0px 0px;
bottom: 0px;
left: 0px;
margin-top: 50px;
margin-left: auto;
margin-right: auto;
overflow: hidden;
background-color: green;
#navigation {
font-size: 125%;
padding: 5px;
bottom: 0px;
position: absolute;
width: 100%;
height: 40px;
border-top: 1px solid black;
border-bottom: 1px solid black;
}
#navigation a {
color: black;
padding: 0px 5px 0px 5px;
margin: 0px 5px 0px 5px;
text-decoration: none;
text-align: center;
}
#navigation a:hover {
background-color: #FF8B27;
}
&#13;