CSS Selectors
CSS selectors are used to target HTML elements for styling. Common selectors include:
- Element Selector:
p { color: blue; } - Class Selector:
.example { font-size: 20px; } - ID Selector:
#unique { text-align: center; }
CSS selectors are used to target HTML elements for styling. Common selectors include:
p {
color: blue;
}
.example {
font-size: 20px;
}
#unique {
text-align: center;
}