Chapter 13: CSS Cascading

Rule 1: The Last Declaration Wins

My First Heading (should be blue)

My first paragraph.

Rule 2: The More Specific Selector Wins

My First Heading

First paragraph.

My Second Heading

Second paragraph.

Rule 3: Inline Style Overrides Internal/External

This heading is red (inline wins)

Rule 4: !important Is the Strongest

This heading is green (!important wins over inline)

Inheritance

Parent Heading

First line (inherits red from parent).

Second line (overridden to green).