Reputation: 151
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