CSS Selectors
Each CSS rule has 2 fundamental parts – the selector and the declaration block. Example: h1 {color: red; background: yellow;} – h1 is the selector, and {…} is the declarations. A value is either a single keyword or a space-separated list of one or more keywords that was permitted for that property. Example: p {font: … Continued