Activity 27: CSS GRID

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.