Flexbox and Grid

10 min read 2 views Jane Editor
Share:

Modern CSS layouts.

Flexbox & Grid

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

Resources & Downloads

Comments (0)

Comments are disabled for this site.