CSS COURSE • LESSON
📌 CSS Syntax
Master CSS and create modern responsive websites with EDUHUB CODE HUB.
CSS Syntax
A CSS rule contains a selector and a declaration block.
selector {
property: value;
}
Example
p {
color:red;
font-size:20px;
}
Explanation
| Part | Description |
|---|---|
| p | Selector |
| color | Property |
| red | Value |