Openwave Mobile Browser 7.0: XHTML Mobile Profile and CSS Reference
Section 16 out of 38 total sections
Current chapter: CSS Reference

You can include comments in your CSS code. A comment can be any number of lines or partial lines of text, markup, or other information. Browsers ignore all comments.
A comment is every character between the comment start string ( /* )and the comment end string ( */ ):
/* one or more lines of comments */
Comments can contain reminders about how and why you wrote the code the way you did, plans for the future, or other helpful information for yourself or others who will work with your code. You can also use comments to temporarily disable sections of code.
NOTE The browser downloads CSS comments with the rest of the document. Keep your comments brief. Lengthy comments can degrade application performance.

