使用 PHP 作为 CSS 文件?
我将如何使用 PHP 作为 CSS 文件。我刚刚将其作为普通的 css 文件包含在内,但它无法在 Google Chrome 中工作。
How would I go about using PHP as a CSS file. I have just included it as a normal css file, but it fails to work in Google Chrome.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您必须告诉浏览器它是 CSS 文件而不是 HTML 文件,在任何输出之前写入以下内容:
请参阅:
http://www.barelyfitz.com/projects/csscolor/
You have to tell the browser that it is a CSS-file and not a HTML-file, write the following before any output:
See:
http://www.barelyfitz.com/projects/csscolor/
尝试添加
stylesheet.php 的第一行
Try adding
in first line of your stylesheet.php