I'm working with a dynamic stylesheet, ie: style.php, beginning with the code
<?php header('Content-type: text/css'); ?>
How should I comment in such a file?
From my own experience, html style commenting tends to cause some trouble (deactivating upcoming styles) whereas css style commenting tends to be ignored.
On the other hand, Notepad++ colors the html comments green, while leaving the css comments black.
Anyway, if there's an official answer, or some special rules, I'd like to know.
Thanks.