CSS with full name Cascading Style Sheets, is used to style HTML components in different ways, for example:
- Color
- Font
- Font size
- Lightness
- Background
- etc....
CSS will be implemented in the following syntax:
- Selector: Pointer that allows us to reference a component in HTML
- Declaration:
- Are blocks that define styles, separated from other blocks by semicolons.
- Blocks always have 2 components: property and value
- Property: style type
- Value: setting value
So let's learn how CSS is used through the following sections: