Build a responsive grid
Test a layout that adapts without a local frontend setup.
.grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
gap: 16px;
}Expected: Grid columns adapt to the selected preview width.
Try in editor