fenn, grid core

Grid Core

Enhance your CSS-Grid experience

Getting started

Add the css to your page

<link rel="stylesheet" href="path/grid-core.min.css">

Add a grid class to your container

<div class="grid-default">Items</div>
<div class="grid-content">Items</div>

Customize

.grid-default {
    --columns: 1;
    --columns-md: 2;
    --gap: 30px;
    --gap-x-md: 50px;
}

Interactive Example