无法在style.php中调用url中的图像

时间:2015-08-31 19:41:11

标签: php

如果我在将functions.php文件包含到我的style.php文件后尝试显示图像,则不会显示。当我删除functions.php文件时,图像显示。

<?php
    header("Content-type: text/css; charset: UTF-8");
    include "inc/functions.php"; //when i delete this line, then the image will show up, but if i don't then the image won't show up.
?>
body {
    color: #000;
    background-image :url(http://127.0.0.1/niche/template/img/bg-image.jpg);
    background-repeat: repeat-x;
    background-size: cover;
    font-family: 'Squada One', cursive;
    }

2 个答案:

答案 0 :(得分:0)

如果它只是您所追求的实际CSS,那么为什么要在其中调用函数?您是否尝试过检查器工具来查看CSS是否实际显示以及函数文件中的某些内容是否输出了一些使CSS文件无效因此无法正常工作的数据

答案 1 :(得分:0)

用样式标签包围你的css

SUM