In the CSS rule h1 { color: red; }, what are h1, color, and red?
h1 { color: red; }
h1
color
red
h1 is the selector, color is the value, and red is the property.
All three are HTML element names.
h1 is the selector, color is the property, and red is the value.
h1 is the property, color is the selector, and red is the value.