Created
August 22, 2012 19:22
-
-
Save jasonmelgoza/3428547 to your computer and use it in GitHub Desktop.
General CSS and SCSS Comment formatting
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Normal CSS | |
/* | |
Filename | |
Description of the file and it's contents (sometimes followed by a table of contents) | |
*/ | |
/* Section heading | |
-------------------------------------------------- */ | |
/* Sub heading | |
------------------------- */ | |
/* Short "why" messages */ | |
.wrapper { | |
width: 800px; | |
margin: 0 auto; /* inline note */ | |
} | |
# Less and Sass | |
// Filename | |
// Description of the file and it's contents (sometimes followed by a table of contents) | |
// Section Heading | |
// -------------------------------------------------- | |
// Sub heading | |
// ------------------------- | |
// Short "why" messages |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment