gpt4 book ai didi

php - 未应用网站样式。 (从 php 包含调用 stylesheet.css)

转载 作者:搜寻专家 更新时间:2023-10-31 21:27:00 27 4
gpt4 key购买 nike

我想知道是否有人可以帮助我解决我在第一次使用 HTML、CSS...和 ​​PHP 创建网站时遇到的一些问题。 (我之前的网页设计尝试仅使用 HTML 和 CSS)。

目前的问题是我的主页 ( index.php ) 不知何故“看不到”我的 stylesheet.css .

index.php 的代码基本上如下:

    <?php
$page_title='Home';
[php-code here, to call in include1.php.....Please see below for details]
?>
<div class="copy">
[page content here, in html]
</div>
<?php
[php-code here, to call in include2.php.....Please see below for details]
?>

我的文件夹结构是:网页

   css
stylesheet.css
images
logo.png
includes
include1.php
include2.php
index.php

试图调用 include1.php (包含文档类型声明和标题部分,包括对 stylesheet.css 的引用),我尝试了以下操作(插入 <?php?> 之间,如上所示),但都没有成功:

$pathtoinclude1 = $_SERVER]'DOCUMENT_ROOT'];
$pathtoinclude1 .= "/includes/include1.php";
include_once($pathtoinclude1);

include('/includes/include1.php')

include1.php , 我引用了 stylesheet.css是:

<link rel="stylesheet" href="../css/stylesheet.css" media="Screen" type="text/css"/>

当我预览主页时,我得到的只是默认字体的文本(Times New Roman?)。没有通过 CSS 应用任何样式。

任何人都可以给我一些关于我做错了什么的指示吗?

最佳答案

如果第一个答案不起作用,请尝试替换

<link rel="stylesheet" href="../css/stylesheet.css" media="Screen" type="text/css">

<?php include 'style.php'?>

然后在 style.php 文件中包含 <style>标签,然后定期添加 css。

关于php - 未应用网站样式。 (从 php 包含调用 stylesheet.css),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34556931/

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