<comments>
ページにコメント (など) がある場合にのみ表示される要素を<commentlist>
CSS ファイルでスタイル設定できません。私はそれを次のように動作させました
<?php here it calls the comments if any ?>
<style>
.comments{}
</style>
なぜこのようなことが起こるのか、また、これに対処するためのより良い方法があれば教えていただきたいです。ありがとう
デリック
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.