使用 CSS 外部样式表而不是设置为 的 php 文件有什么好处content-type: text/css
?如果你把这个头文件放在 PHP 文件的顶部,我觉得你有更多的潜力:
<?php
header("Content-type: text/css");
if($query_string = "contact_us") {
#nav {}
}
?>
(^ 那是一个 .php 文件)。http://shapeshed.com/using_php_to_enhance_css/
如果没有失败(我检查了它们是如何缓存在 Chrome 的网络面板中的,我相信它是一样的),是不是有点像使用.html
or .php
?
感谢您的任何反馈。