Skip to main content

Command Palette

Search for a command to run...

Activity 27: CSS GRID

Published
1 min readView as Markdown

Key CSS Grid Properties

  • display: grid;: Enables the grid layout.

  • grid-template-columns: Defines column structure (e.g., repeat(3, 1fr)).

  • grid-template-rows: Defines row structure.

  • gap: Adds spacing between grid items.

  • auto-fit and auto-fill: Automatically adjusts grid columns based on content.