
A comment is a piece of text in your xCss file that you do not want to appear in the final output.
Basic CSS, already supports C-style block comments,
of the form /* a comment */.
These work fine but are unwieldy, as you must have both opening and closing braces.
xCss adds support for C++ / C# / Java-style line comments, which comment from the marker to the end of that commented line.
This makes it easier to use comments for;
// This is a note regarding the following section
// of CSS code...
li {
background-color: green;
// color: #f00;
font-size: 20pt;
}
Inline comments treat everything after the comment marker (//)
until the end of the line as a source-code comment,
and this text is not emitted in the final output.
Everything before the marker is preserved untouched.
color: #f00; // red