Class Selectors
Class selectors target elements with a specific class attribute. They start with a dot (.).
Basic Class Selectors
Loading Selector Playground...
Try these class selectors:
.highlight- elements with class "highlight".container- elements with class "container".important- elements with class "important"
Multiple Classes
An element can have multiple classes. You can select elements with specific combinations:
Loading Selector Playground...
.text.large- elements with BOTH "text" and "large" classes.large.bold- elements with BOTH "large" and "bold" classes
Styling with Class Selectors
Loading CSS Playground...
Element + Class Combination
You can combine element and class selectors:
Loading Selector Playground...
p.special- only<p>elements with class "special"
Exercise: Style a Button
Add styles to elements with the "button" class:
Loading CSS Exercise...

