+20 XP
Lesson 22

CSS Syntax

Understanding selectors and properties

CSS Syntax Structure

CSS has a simple pattern: selector, property, and value!

selector {
property: value;
}

Selector

What to style (h1, p, button)

Property

What to change (color, size)

Value

How to change it (blue, 20px)