CSS Comment
Advertisements
CSS Comment
Comment is nothing but it is a statement which is not display on browser window. It is useful to understand about particular code, which code is written for what purpose.
Syntax
/* css comment */
Example
<style> /* style for paragraph*/ p { color:red; } </style>
In CSS single line and multi line comments are used in same way.
Example
<html> <body> <style> /* style for paragraph*/ p { color:red; } /* multi line comment in CSS */ </style> <p>This is my first Html code</p> </body> </html>
Example
This is my first Html code
Google Advertisment