Daily Shaarli

All links of one day in a single page.

June 29, 2020

WD40 ist KEIN Schmiemittel | Die Wahrheit über WD40! | Lets Bastel - YouTube

WD-40 ist das Leben 🤣

YES NO AS A SERVICE

lyokolux.ynass.com : YES !

WTF and whatever as a service

3 CSS Grid Techniques to Make You a Grid Convert | Modern CSS Solutions
  1. Switch the Grid Flow Axis : grid-auto-flow: column;
  2. XY Center Anything : place-content: center; (on any child)
  3. Intrinsically Responsive Grid Columns
:root {
  --grid-col-breakpoint: 15rem;
}

.grid-columns {
  grid-template-columns: repeat(auto-fit, minmax(var(--grid-col-breakpoint), 1fr));
}