Interview Questions

What is cascade?

CSS Interview Questions and Questions


(Continued from previous question...)

52. What is cascade?

Cascade is a method of defining the weight (importance) of individual styling rules thus allowing conflicting rules to be sorted out should such rules apply to the same selector.

Declarations with increased weight take precedence over declaration with normal weight:

P {color: white ! important} /* increased weight */
P (color: black} /* normal weight */

(Continued on next question...)

Other Interview Questions