I think you get this <![CDATA[ because you are in a xhtml file, and in your css you have this symbol >.
> is a special character in xml. CDATA is used to prevent errors when parsing the document.
A way to say : "ignore all special characters in this section".
If you don't want to see it, put your css in an external file, but as you said, it doesn't hurt.
|