Maquetación minimalista con CSS
En 1-Line Layouts se presentan 10 técnicas básicas de maquetado con CSS que ocupan muy poco:
- Super Centered place-items: center
- The Deconstructed Pancake flex: 0 1 <baseWidth>
- Sidebar Says grid-template-columns: minmax(<min>, <max>) …
- Pancake Stack grid-template-rows: auto 1fr auto
- Classic Holy Grail Layout grid-template: auto 1fr auto / auto 1fr auto
- 12-Span Grid grid-template-columns: repeat(12, 1fr)
- RAM (Repeat, Auto, Minmax) grid-template-columns: repeat(auto-fit, minmax(<base>, 1fr))
- Line Up justify-content: space-between
- Clamping My Style clamp(<min>, <actual>, <max>)
- Respect for Aspect aspect-ratio: <width> / <height>
También hay un vídeo:
Deja un comentario