CSS Comment
A comment is that text that explains the code. It is ignored by the parsers or browsers. The comments help the developers to understand the code as they may contain some additional useful information.The syntax of CSS comment is as follows:
/*This is a comment*/A CSS comment can be understood in the following example:
The output will be unaffected by the comment added in the above code. Below is the output:/*Below is the CSS script*/ This is a bold text with arial font and red color
This is a bold text with arial font and red color
