Problem Statement
What does 'cascading' mean in CSS?
Explanation
Cascading means the order of style application. When multiple rules affect the same element, the one with higher specificity or later in the code wins. Explaining this clearly impresses interviewers — it shows real debugging skill.
Code Solution
SolutionRead Only
p { color: blue; }
p.special { color: red; }