How to import/include a CSS file using PHP code and not HTML code?(如何使用 PHP 代码而不是 HTML 代码导入/包含 CSS 文件?)
问题描述
我在谷歌上搜索了很多,但似乎我做错了什么.
I have googled a lot but it seems that I am doing something wrong.
我想这样做:
<?php
include 'header.php';
include'CSS/main.css';
...
?>
但是,我的页面打印了 CSS 代码.
However, my page prints the CSS code.
注意:我想使用 PHP 来包含 CSS 文件,而不是使用我还想将我的 CSS 文件重命名为某些网站提到的 PHP 文件.
Note: I want to use PHP to include the CSS file, and not use I also do you want to rename my CSS file to a PHP file as some website mentioned.
有什么线索吗?
非常感谢.
推荐答案
你必须用 标签包围 CSS:
You have to surround the CSS with a <style>
tag:
<?php include 'header.php'; ?>
<style>
<?php include 'CSS/main.css'; ?>
</style>
...
PHP include
在 .css
结尾也能正常工作.通过这种方式,您甚至可以在 CSS 文件中使用 PHP.这对组织例如非常有帮助.颜色作为变量.
PHP include
works fine with .css
ending too. In this way you can even use PHP in your CSS file. That can be really helpful to organize e.g. colors as variables.
这篇关于如何使用 PHP 代码而不是 HTML 代码导入/包含 CSS 文件?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何使用 PHP 代码而不是 HTML 代码导入/包含 CSS 文件?
基础教程推荐
- PHP 守护进程/worker 环境 2022-01-01
- HTTP 与 FTP 上传 2021-01-01
- 使用 PDO 转义列名 2021-01-01
- 在 CakePHP 2.0 中使用 Html Helper 时未定义的变量 2021-01-01
- 找不到类“AppHttpControllersDB",我也无法使用新模型 2022-01-01
- Doctrine 2 - 在多对多关系中记录更改 2022-01-01
- 如何在 Symfony 和 Doctrine 中实现多对多和一对多? 2022-01-01
- 在 yii2 中迁移时出现异常“找不到驱动程序" 2022-01-01
- 如何在 XAMPP 上启用 mysqli? 2021-01-01
- phpmyadmin 错误“#1062 - 密钥 1 的重复条目‘1’" 2022-01-01