A layout framework of columns and gutters used to organise content consistently across a webpage or design. Ensures alignment and visual order.
A 12-column CSS grid allows a designer to place two 6-column content blocks side by side on desktop, stacking them on mobile.
The 12-column grid has been the dominant web layout standard since Bootstrap's introduction in 2011 and remains the most widely used grid structure in professional web design today.
Column grid, Layout grid
-
Page layout design — both in design tools (Figma) and in front-end code (CSS). A grid system is the structural backbone that ensures consistent alignment across every page of a site.
display: grid; grid-template-columns: repeat(12, 1fr); gap: 24px;grid-column: span 6; — this element occupies 6 of the 12 columns (half the width).Use Webflow's Grid element for two-dimensional layouts, or Flexbox for one-dimensional row/column arrangements. Set up a global grid class (e.g., .container with max-width 1200px and auto margins) used across all pages as the consistent layout wrapper.
Answer