Why doesn't my style apply when I write 'p' selector but the paragraph text stays black?
Maybe your CSS file is not linked correctly or another style with higher priority overrides it. Also check spelling and selector correctness.
💡 Always check if CSS is loaded and no other styles override your element selector (see render_steps 1).
Why does styling 'button' change the background but not the text color?
If you forget to set 'color', the button text keeps default color. You must explicitly set 'color' to change text color.
💡 Element selectors style all matched elements, but each property must be set to see effect (see render_steps 3).