.

By Sarxzer

Edited on Monday 17 November 2025 at 15:09

Getting Started with CSS Grid

CSS Grid is a powerful tool to create two-dimensional layouts. Here's a simple example:

.container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 16px;
}

Features:

Resources:

> Comments

No comments yet.