Skip to content

Instantly share code, notes, and snippets.

View eylonshm's full-sized avatar
🔍
Coding, DO NOT DISTURB

Eylon Shmilovich eylonshm

🔍
Coding, DO NOT DISTURB
View GitHub Profile
@basham
basham / css-units-best-practices.md
Last active July 4, 2024 14:41
CSS Units Best Practices

CSS units

Recommendations of unit types per media type:

Media Recommended Occasional use Infrequent use Not recommended
Screen em, rem, % px ch, ex, vw, vh, vmin, vmax cm, mm, in, pt, pc
Print em, rem, % cm, mm, in, pt, pc ch, ex px, vw, vh, vmin, vmax

Relative units

Relative units

@miguelmota
miguelmota / nodejs-directory-structure.md
Last active December 2, 2023 08:47
Node.js MVC directory structure example.
Node.js MVC directory structure example.
├── app
│   ├── controllers
│   │   ├── admin
│   │   │   ├── posts.js
│   │   │   └── users.js
│   │   ├── posts.js
│ │ ├── session.js