Cascading Style Sheets
- A Style Sheet is a set of rules
- Rules define aspects of elements
- Two parts: Selector and Declaration
- h1 { color: red }
- Declaration consists of Property: Value
- Selectors and Declarations can be grouped
- h1, h2, h3 { color: red }
- Selectors separated by commas
- h1 { color: red; text-align: center }
- Declarations separated by semicolons