Skip to main content
CSS

CSS Grid cheatsheet

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}