我无法对只在页面上显示的元素进行样式化,因为它有CSS文件的注释(<comments>
,<commentlist>
等)。我让它像
<?php here it calls the comments if any ?>
<style>
.comments{}
</style>
我想知道为什么会发生这种情况,如果有更好的方法可以解决这个问题。 感谢
Derik
答案 0 :(得分:1)
没有必要通过PHP动态添加CSS。
如果您在输出之前未使用header(“Content-type: text/css”);
,则动态生成的CSS会降低页面速度。它将表现为内部CSS,因此更好的解决方案是缓存它。