CSS Grid Playground
Interactive CSS Grid Designer
Grid Container
Grid Items
Templates
Two Column
Simple two-column layout with optional header and footer
Container Styles
Define grid template, columns, rows, and gaps
grid-gap: 1rem; grid-template-columns: 250px 1fr; grid-template-rows: auto 1fr auto; grid-template-areas: "header header" "sidebar main" "footer footer";
7 lines
1
grid-area: header;
2
grid-area: sidebar;
3
grid-area: main;
4
grid-area: footer;