0

<comments>ページにコメント (など) がある場合にのみ表示される要素を<commentlist>CSS ファイルでスタイル設定できません。私はそれを次のように動作させました

<?php here it calls the comments if any ?>
<style>
 .comments{}
</style>

なぜこのようなことが起こるのか、また、これに対処するためのより良い方法があれば教えていただきたいです。ありがとう

デリック

4

1 に答える 1

1

There is no need to dynamically add CSS by PHP.

If you are not using the header(“Content-type: text/css”); before output, then CSS, which has been dynamically produced, will slow down your page. It will behave as internal CSS, therefore the better solution is to cache it.

于 2012-09-23T02:29:43.280 に答える