Quantcast
Channel: nixer.org
Viewing all articles
Browse latest Browse all 10

Nesting multi-line comments in CSS

$
0
0

Multi-line comments in CSS follow the C style of commenting. The beginning of the block is indicated by a /* and the end of the block is indicated by */. For example, in the following block:

#header {
  /* margin-top: 10px;
  margin-bottom: 10px;*/
  float: left;
  clear: both;
}

read more


Viewing all articles
Browse latest Browse all 10

Trending Articles