Formatting & Tools

Formatting CSS A comprehensive example Use CSS Comb to bring order to your CSS code. Useful Tools CSS Resets You can create […]

Read More

Specificity

Classes vs. IDs Use IDs as JS hooks or as fragments identifiers in our page. Style with classes first. IDs […]

Read More

CSS Architecture: SMACSS

Scalable Modular Architecture for CSS, or SMACSS.Helps structure code for projects on any scale, similar to OOCSS.Combine repeating CSS patterns […]

Read More

CSS Architecture: OOCSS

Object Oriented CSS (OOCSS).The “object” here is a repeating visual pattern you see. Visual pattern are then abstracted into indepenedant […]

Read More

CSS Architecture: Grouping

Group repeated CSS properties together into one rule, then add the selectors that share these properties into it. Before After

Read More