Created
April 15, 2021 12:21
-
-
Save wpweb101/68268e11b77e273c543076706b55be2f to your computer and use it in GitHub Desktop.
Right CSS Comments
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
/* This is a single-line comment */ | |
p { | |
color: red; | |
} | |
p { | |
color: red; /* Example for inline comment */ | |
} | |
/* This is | |
a multi-line | |
comment */ | |
p { | |
color: red; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment