📐 Grid Template Columns
📏 Grid Template Rows
🎯 Gap
📍 Justify Content
⬆️ Align Content
🔄 Reset & Examples
Item 1
Item 2
Item 3
Item 4
Item 5
Item 6
Item 7
Item 8
Item 9
📋 Current CSS Code:
display: grid;
grid-template-columns: repeat(3, 1fr);
grid-template-rows: repeat(3, 100px);
gap: 10px;
grid-template-columns: repeat(3, 1fr);
grid-template-rows: repeat(3, 100px);
gap: 10px;
📚 CSS Grid Terminology
Grid Container
Grid Item
Cell
Grid Item
Grid Item
Key Terms:
- Grid Container: Parent element with display: grid
- Grid Items: Direct children of the grid container
- Grid Lines: Dividing lines that create the structure
- Grid Tracks: Space between two adjacent grid lines (rows/columns)
- Grid Cell: Single unit of the grid
- Grid Area: Rectangular area occupied by one or more cells