gpt4 book ai didi

PHP 和包括

转载 作者:太空宇宙 更新时间:2023-11-04 01:46:43 44 4
gpt4 key购买 nike

我正在从头开始创建我的第一个网站,并且看到了一些可以通过使用 PHP include 来减少网站要重复的部分的代码。到目前为止,我有一个 head.php(我添加的是因为我的 stylesheet.css 被链接到那里并且需要在每个页面上访问它),header.php,footer.php,index.php 和其他带有 php 的页面扩展名(关于、联系、那群人)。

除一个问题外,所有内容都出现在我希望出现的位置:设置正文背景颜色时,所有内容(包括:header.php、footer.php)似乎都在正文中。我通过在 body 周围设置边框来测试这一点,它证实了我的想法。

有人知道出了什么问题吗?我在索引文件中的页眉、页脚和其他部分使用了 flexbox,但我认为这不会影响任何内容。

<!DOCTYPE html>


<?php include 'head.php'; ?>
<?php include 'header.php'; ?>


<body id="main-block">
<!-- Button links to Portfolio and Other stuff -->
<div class="flex-container">
<a class="main-button" href="#">Web Work</a>
<a class="main-button" href="#">Other Work</a>
</div>

</body>

<?php include 'footer.php'; ?>
</html>

最佳答案

您的 body 标签应该环绕您的页眉和页脚元素。看下面的标记

<!DOCTYPE html>
<html lang="en">
<head>
</head>
<body>
<?php include (header);?>
<?php include (footer);?>
</body>
</html>

如果你想改变元素的背景颜色,只需添加 css

element { background-color:pink }

关于PHP 和包括,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44340273/

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