/* Comment */
Comments पर दी हुई lines को Browser द्वारा ignore किया जाता है | Comments सिर्फ user को instructions देने के लिए define की जाती है |
Single Line Comment
Example पर single line comment दी गयी है |
h1{
background-color: red;
color:blue;
/* This is single line comment */
}
Multiline Line Comment
Example पर multiline comment दी गयी है |
h1{
background-color: red;
color:blue;
/* This is
single
line comment */
}
Comments
Post a Comment