ilmix
ilmix

Reputation: 151

Does || have any special meaning in css comments?

I was going through mozilla web-dev tutorial and noticed that there are || signs in every css comment. The stylesheet looks like this:

/* || General setup */

html, body {
  margin: 0;
  padding: 0;
}

html {
  font-size: 10px;
  background-color: #a9a9a9;
}

body {
  width: 70%;
  margin: 0 auto;
}

/* || typography */

Is there any special meaning to the || ?

Upvotes: 1

Views: 52

Answers (1)

Johannes
Johannes

Reputation: 67748

no there isn't any meaning to that in CSS comments

Upvotes: 2

Related Questions