Elements Hands-On 7

🎯 Understanding CSS Specificity

CSS Specificity determines which styles are applied when multiple rules target the same element.

  1. 🛠️ Open DevTools (F12) and go to Elements panel
  2. 👆 Click on different elements below
  3. 📝 Observe the Styles panel on the right
  4. 🔍 Notice how specificity affects which styles win by hovering the style

CSS Specificity Numbers (0,0,0)

Specificity is represented as three numbers:

Examples:

Specificity Hierarchy (highest to lowest):

  1. !important
  2. Inline styles (style attribute)
  3. IDs (#id)
  4. Classes (.class)
  5. Elements (p, div, etc.)

Specificity Examples

Try inspecting these elements:

This text has inline, ID, class, and element styles

Class selector (.level-1)

Multiple classes. Why level-2 wills level-1?

ID + Class

Inline + ID + Multiple Classes

Inline + ID + Multiple Classes 2

Inline + ID + Multiple Classes 3