Last active
May 31, 2025 18:20
-
-
Save Integralist/1106383 to your computer and use it in GitHub Desktop.
CSS Syntax Terminology #css
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
/* Rule (the entire chunk of code below can just be referred to as a single 'rule') */ | |
/* Selectors */ | |
#myID, .myClass | |
/* Declaration Block */ | |
{ | |
/* Declaration */ | |
/* Property */border: /* Value */1px solid #DCDDDE; | |
/* Declaration */ | |
/* Property */width: /* Value */335px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Check out http://nimbupani.com/css-vocabulary.html :)