Grid Container Properties

Visual Preview

1
2
3
4
5
6

Generated CSS

About CSS Grid

CSS Grid is a powerful layout system that allows you to create two-dimensional layouts with rows and columns. It's perfect for complex layouts and responsive designs.

The grid container properties control how grid items are laid out:

  • grid-template-columns: Defines the columns (e.g., "1fr 1fr 1fr" or "repeat(3, 1fr)")
  • grid-template-rows: Defines the rows (e.g., "auto" or "100px 200px")
  • gap: Sets spacing between grid items
  • justify-items: Aligns items along the inline axis
  • align-items: Aligns items along the block axis