Skip to content

Instantly share code, notes, and snippets.

View ifritzler's full-sized avatar

Ilan Emanuel Fritzler ifritzler

  • Mar del Plata - Buenos Aires - Argentina
View GitHub Profile
@ifritzler
ifritzler / sassas.md
Created July 25, 2022 01:27 — forked from AdamMarsden/sassas.md
Sass Architecture Structure

Sass Architecture Structure

sass/
|
|– base/
|   |– _reset.scss       # Reset/normalize
|   |– _typography.scss  # Typography rules
|   ...                  # Etc…
|
@ifritzler
ifritzler / cssdo.md
Created July 25, 2022 01:26 — forked from AdamMarsden/cssdo.md
CSS Declaration order

CSS Declaration Order

Related property declarations should be grouped together following the order:

  • Box
  • Border
  • Background
  • Text
  • Other

Box includes any property that affects the display and position of the box such as display, float, position, left, top, height, width and so on. These are most important because they affect the flow of the rest of the document.