Selectors and Specificity
15 minutes
CSS Selectors and Specificity
Types of Selectors
Element Selectors
css
p { color: blue; }
Class Selectors
css
.highlight { background: yellow; }
ID Selectors
css
#header { font-size: 24px; }
Specificity Rules
CSS specificity determines which styles apply when there are conflicts: