Libove Blog

Personal Blog about anything - mostly programming, cooking and random thoughts

Link:Least amount of CSS

Link: https://thecascade.dev/article/least-amount-of-css/

Nice solution for the content width.

main {
  max-width: min(70ch, 100% - 4rem);
  margin-inline: auto;
}

#css #webdev