Rules and selectors
A rule has a selector saying which elements it applies to, and declarations saying what to do to them.
p { color: #57493D; }
.card { border: 1px solid #ddd; }
nav a { color: #B9834F; }
nav > a { text-decoration: none; }- A space means descendant at any depth. A greater-than sign means direct child only.
- Style with classes. An id can never be reused and carries very high specificity.