CSS Specificity Basics

Specificity Hierarchy

Element vs Class vs ID Selectors

This paragraph uses only an element selector (score: 0,0,1)

This paragraph uses only an element selector but is later in the code so it overwrites the above (score: 0,0,1)

This paragraph has a class (score: 0,1,1)

This paragraph has class + ID (score: 1,1,1)

This paragraph has class + ID (score: 1,1,1) but is overridden by inline style.