CSS Fundamentals
CSS (Cascading Style Sheets) is a stylesheet language used to describe the presentation of a document written in HTML. CSS controls the layout, colors, fonts, and overall visual appearance of web pages.
CSS Syntax
CSS consists of selectors and declarations:
1 | selector { |
For example:
1 | h1 { |
Ways to Include CSS
1. External CSS
1 | <head> |
2. Internal CSS
1 | <head> |
3. Inline CSS
1 | <p style="color: red; font-size: 16px;">This is a paragraph.</p> |
CSS Selectors
Selectors determine which elements the styles will be applied to.
Basic Selectors
1 | /* Element selector */ |
Combinators
1 | /* Descendant selector (elements inside other elements) */ |
Attribute Selectors
1 | /* Elements with a specific attribute */ |
Pseudo-classes and Pseudo-elements
1 | /* Pseudo-classes (special states) */ |
The CSS Box Model
Every HTML element is a box consisting of:
- Content: The actual content of the element
- Padding: Space between the content and the border
- Border: A line around the padding
- Margin: Space outside the border
1 | div { |
By default, width
and height
only set the content dimensions. The total width of an element is:width + padding-left + padding-right + border-left + border-right + margin-left + margin-right
Box-sizing Property
1 | /* Makes width/height include content, padding, and border */ |
Typography
1 | p { |
Web Fonts
1 | @font-face { |
Colors
1 | .example { |
CSS Cascade, Specificity, and Inheritance
Cascade
CSS rules cascade based on:
- Importance (
!important
) - Specificity
- Source order (last defined rule wins)
Specificity
Specificity determines which rules take precedence:
- Inline styles: 1000
- IDs: 100
- Classes, attributes, pseudo-classes: 10
- Elements, pseudo-elements: 1
1 | /* Specificity: 1 */ |
Inheritance
Some CSS properties are inherited from parent to child elements, like color
, font-family
, and text-align
. Others, like margin
and padding
, are not.
1 | body { |
CSS Variables (Custom Properties)
1 | :root { |
Best Practices
- Use a CSS reset or normalize.css to ensure consistent styling across browsers
- Follow a naming convention like BEM (Block Element Modifier)
- Organize CSS logically by grouping related styles
- Keep selectors simple to improve performance and maintainability
- Minimize use of !important as it breaks the natural cascade
- Use shorthand properties when appropriate
- Comment your code for complex sections
- Avoid inline styles except for dynamic content
Learning Resources
Understanding CSS fundamentals is essential before moving on to more advanced layout techniques like Flexbox and Grid.