The selector indicates the HTML element targeted for styling.
Within the declaration block, there are one or more declarations, each separated by semicolons.
Every declaration consists of a CSS property name and a corresponding value, separated by a colon.
Semicolons separate multiple CSS declarations, while curly braces enclose declaration blocks.
In this instance, all <p> elements will be aligned to the center and have their text color set to red.
p { |
You will learn much more about CSS selectors and CSS properties in the next chapters! |