CSS syntax comprises a few fundamental pieces; rules, selectors, declarations, properties and values.
This CSS rule contains all the other bits and bobs we just mentioned.
Selectors point at elements within the HTML markup, then the declarations within the curly braces define how those elements should be styled. There can be multiple declarations within a single rule; each declaration comprising a property with an associated value.
There are many ways you can select HTML elements, from straightforward type selectors:
Then we have class selectors, which point to all elements with a specific class applied to them. Take a look at this markup, with its corresponding CSS: