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 中的输入表单获取日期 2022-01-01
- SoapClient 设置自定义 HTTP Header 2021-01-01
- 正确分离 PHP 中的逻辑/样式 2021-01-01
- PHP Count 布尔数组中真值的数量 2021-01-01
- Oracle 即时客户端 DYLD_LIBRARY_PATH 错误 2022-01-01
- Laravel 仓库 2022-01-01
- Mod使用GET变量将子域重写为PHP 2021-01-01
- 没有作曲家的 PSR4 自动加载 2022-01-01
- 带有通配符的 Laravel 验证器 2021-01-01
- 如何定位 php.ini 文件 (xampp) 2022-01-01