Comments

Other topics

Remarks:

  • Comments in CSS always start with /* and end with */
  • Comments cannot be nested

Single Line

/* This is a CSS comment */
div {
   color: red; /* This is a CSS comment */ 
}

Multiple Line

/*
    This
    is
    a
    CSS
    comment
*/
div {
   color: red;
}

Syntax:

  • /* Comment */

Contributors

Topic Id: 1625

Example Ids: 5260,5261

This site is not affiliated with any of the contributors.