Coming Soon

We're sorry, but this feature is not yet available. We are working hard to make it happen as soon as possible. Thank you for your patience and understanding. Please check back later for updates.

Just a demo

The element you clicked is for demonstration purposes only and does not lead to actual content. Everything you see here is a simulation intended to demonstrate how the UI elements might look and behave in a real application.

Grid

Create a fully responsive, fluid and nestable grid layout.

The Grid system of UIkit allows you to arrange block elements in columns. It works closely together with the Width component to determine how much space of the container each item will take up, and it can also be combined with the Flex component to align and order grid items.

Usage

Note If you are not using Tailwind CSS, you can skip this step. On your tailwind.config.js file, add the Grid component within the ui() plugin.

import ui from "franken-ui";
 
ui({
    components: {
        grid: {
            hooks: {},
            media: true
        }
    }
}),

To create the grid container, add the uk-grid attribute to a <div> element. Add child <div> elements to create the cells. By default, all grid cells are stacked. To place them side by side, add one of the classes from the Width component. Using .uk-child-width-expand will automatically apply equal width to items, regardless of how many there are.

Note There’s no need to add a .uk-grid class as it will be added via JavaScript. However, if UIkit’s JavaScript is deferred, the class should be added to prevent stacking while loading.

<div uk-grid>
  <div></div>
  <div></div>
</div>

Note Often cards from the Card component are used inside a grid. This also goes for the following examples for visualization.

Copy to clipboard
  • Item
    Item
    Item
  • <div class="uk-child-width-expand@s uk-text-center" uk-grid>
      <div>
        <div class="uk-card uk-card-body uk-card-default">Item</div>
      </div>
      <div>
        <div class="uk-card uk-card-body uk-card-default">Item</div>
      </div>
      <div>
        <div class="uk-card uk-card-body uk-card-default">Item</div>
      </div>
    </div>

Gap modifiers

The Grid component comes with a default gap that is decreased automatically from a certain breakpoint usually on a smaller desktop viewport width. To apply a different gap, add one of the following classes.

ClassDescription
.uk-grid-smallAdd this class to apply a small gap.
.uk-grid-mediumAdd this class to apply a medium gap like the default one, but without a breakpoint.
.uk-grid-largeAdd this class to apply a large gap with breakpoints.
.uk-grid-collapseAdd this class to remove the grid-gap entirely.
<div class="uk-grid-small" uk-grid></div>
Copy to clipboard
  • Item
    Item
    Item
    Item
    Item
    Item
    Item
    Item
    Item
    Item
    Item
    Item
  • <div class="uk-child-width-expand@s uk-grid-small uk-text-center" uk-grid>
      <div>
        <div class="uk-card uk-card-body uk-card-default">Item</div>
      </div>
      <div>
        <div class="uk-card uk-card-body uk-card-default">Item</div>
      </div>
      <div>
        <div class="uk-card uk-card-body uk-card-default">Item</div>
      </div>
    </div>
     
    <div class="uk-child-width-expand@s uk-grid-medium uk-text-center" uk-grid>
      <div>
        <div class="uk-card uk-card-body uk-card-default">Item</div>
      </div>
      <div>
        <div class="uk-card uk-card-body uk-card-default">Item</div>
      </div>
      <div>
        <div class="uk-card uk-card-body uk-card-default">Item</div>
      </div>
    </div>
     
    <div class="uk-child-width-expand@s uk-grid-large uk-text-center" uk-grid>
      <div>
        <div class="uk-card uk-card-body uk-card-default">Item</div>
      </div>
      <div>
        <div class="uk-card uk-card-body uk-card-default">Item</div>
      </div>
      <div>
        <div class="uk-card uk-card-body uk-card-default">Item</div>
      </div>
    </div>
     
    <div
      class="uk-child-width-expand@s uk-margin-large-top uk-grid-collapse uk-text-center"
      uk-grid
    >
      <div>
        <div class="uk-padding uk-background-muted">Item</div>
      </div>
      <div>
        <div class="uk-padding uk-background-primary">Item</div>
      </div>
      <div>
        <div class="uk-padding uk-background-secondary">Item</div>
      </div>
    </div>

Column and Row

To apply a different gap to just the column or row, add one of the following classes.

ClassDescription
.uk-grid-column-small
.uk-grid-row-small
Add one of these classes to apply a small gap to the column or row.
.uk-grid-column-medium
.uk-grid-row-medium
Add one of these classes to apply a medium gap to the column or row.
.uk-grid-column-large
.uk-grid-row-large
Add one of these classes to apply a large gap to the column or row.
.uk-grid-column-collapse
.uk-grid-row-collapse
Add one of these classes to remove the grid-gap entirely from the column or row.
<div class="uk-grid-row-large uk-grid-column-small" uk-grid></div>
Copy to clipboard
  • Item
    Item
    Item
    Item
    Item
    Item
  • <div
      class="uk-child-width-1-3@s uk-grid-row-large uk-grid-column-small uk-text-center"
      uk-grid
    >
      <div>
        <div class="uk-card uk-card-body uk-card-default">Item</div>
      </div>
      <div>
        <div class="uk-card uk-card-body uk-card-default">Item</div>
      </div>
      <div>
        <div class="uk-card uk-card-body uk-card-default">Item</div>
      </div>
      <div>
        <div class="uk-card uk-card-body uk-card-default">Item</div>
      </div>
      <div>
        <div class="uk-card uk-card-body uk-card-default">Item</div>
      </div>
      <div>
        <div class="uk-card uk-card-body uk-card-default">Item</div>
      </div>
    </div>

Nested grid

You can easily extend your grid layout with nested grids.

<div uk-grid>
  <div>
    <div uk-grid>
      <div></div>
      <div></div>
    </div>
  </div>
  <div>
    <div uk-grid>
      <div></div>
      <div></div>
    </div>
  </div>
</div>
Copy to clipboard
  • Item
    Item
    Item
  • <div class="uk-text-center uk-child-width-1-2" uk-grid>
      <div>
        <div class="uk-card uk-card-body uk-card-default">Item</div>
      </div>
      <div>
        <div class="uk-text-center uk-child-width-1-2" uk-grid>
          <div>
            <div class="uk-card uk-card-body uk-card-primary">Item</div>
          </div>
          <div>
            <div class="uk-card uk-card-body uk-card-primary">Item</div>
          </div>
        </div>
      </div>
    </div>

Divider modifier

Add the .uk-grid-divider class to separate grid cells with lines. This class can be combined with the gap modifiers. As soon as the grid stacks, the divider lines will become horizontal.

<div class="uk-grid-divider" uk-grid></div>
Copy to clipboard
  • Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
    Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
    Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.
  • <div class="uk-child-width-expand@s uk-grid-divider" uk-grid>
      <div>
        Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod
        tempor incididunt ut labore et dolore magna aliqua.
      </div>
      <div>
        Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut
        aliquip ex ea commodo consequat.
      </div>
      <div>
        Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore
        eu fugiat nulla pariatur.
      </div>
    </div>

Match height

To match the height of the direct child of each cell, add the .uk-grid-match class. This is needed to match the height of cards from the Card component.

<div class="uk-grid-match" uk-grid></div>
Copy to clipboard
  • Item
    Item
    Item

  • <div class="uk-child-width-expand@s uk-grid-match uk-text-center" uk-grid>
      <div>
        <div class="uk-card uk-card-body uk-card-default">Item</div>
      </div>
      <div>
        <div class="uk-card uk-card-body uk-card-default">Item<br /></div>
      </div>
      <div>
        <div class="uk-card uk-card-body uk-card-default">Item<br /><br /></div>
      </div>
    </div>

Match only one cell

You can also match the height of the direct child of just one cell. To do so, add the .uk-grid-item-match class to the grid item whose child you want to match.

<div uk-grid>
  <div class="uk-grid-item-match"></div>
  <div></div>
</div>
Copy to clipboard
  • Heading

    Lorem ipsum dolor sit amet.

    Heading

    Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.

  • <div class="uk-child-width-expand@s" uk-grid>
      <div class="uk-grid-item-match">
        <div class="uk-card uk-card-body uk-card-default">
          <h3>Heading</h3>
          <p>Lorem ipsum dolor sit amet.</p>
        </div>
      </div>
      <div>
        <h3>Heading</h3>
        <p>
          Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
          tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim
          veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea
          commodo consequat.
        </p>
      </div>
    </div>

Targets

For a more specific selection of the elements whose heights should be matched, add the target: SELECTOR option to the uk-height-match attribute from the Height component.

<div uk-grid uk-height-match="target: > div > .uk-card">
  <div>
    <div class="uk-card uk-card-default"></div>
  </div>
  <div>
    <div class="uk-card uk-card-default"></div>
  </div>
</div>
Copy to clipboard
  • Item
    Item
    Item

  • <div
      class="uk-child-width-expand@s uk-text-center"
      uk-grid
      uk-height-match="target: > div > .uk-card"
    >
      <div>
        <div class="uk-card uk-card-body uk-card-default">Item</div>
      </div>
      <div>
        <div class="uk-card uk-card-body uk-card-default">Item<br /></div>
      </div>
      <div>
        <div class="uk-card uk-card-body uk-card-default">Item<br /><br /></div>
      </div>
    </div>

Grid and width

The grid is mostly used in combination with the Width component. This allows for great flexibility when determining the column widths.

<div uk-grid>
  <div class="uk-width-auto@m"></div>
  <div class="uk-width-1-3@m"></div>
  <div class="uk-width-expand@m"></div>
</div>
Copy to clipboard
  • Auto
    1-3
    Expand
  • <div class="uk-text-center" uk-grid>
      <div class="uk-width-auto@m">
        <div class="uk-card uk-card-body uk-card-default">Auto</div>
      </div>
      <div class="uk-width-1-3@m">
        <div class="uk-card uk-card-body uk-card-default">1-3</div>
      </div>
      <div class="uk-width-expand@m">
        <div class="uk-card uk-card-body uk-card-default">Expand</div>
      </div>
    </div>

Child width

If the grid columns are evenly split, you can add one of the .uk-child-width-* classes to the grid container instead of adding a class to each of the items.

<div class="uk-child-width-1-2@s uk-child-width-1-3@m" uk-grid></div>
Copy to clipboard
  • Item
    Item
    Item
  • <div class="uk-child-width-1-2@s uk-child-width-1-3@m uk-text-center" uk-grid>
      <div>
        <div class="uk-card uk-card-body uk-card-default">Item</div>
      </div>
      <div>
        <div class="uk-card uk-card-body uk-card-default">Item</div>
      </div>
      <div>
        <div class="uk-card uk-card-body uk-card-default">Item</div>
      </div>
    </div>

For more detailed information, take a look at the Width component.

Grid and flex

You can easily combine the grid with the Flex component. That way you can modify the items’ alignment, ordering, direction and wrapping. This allows you, for example, to flip the cells’ display order for wider viewports. All this works together with the gap and divider modifiers.

<div class="uk-flex-center" uk-grid>
  <div></div>
  <div class="uk-flex-first"></div>
</div>
Copy to clipboard
  • Item 1
    Item 2
    Item 3
    Item 4
    Item 5
    Item 6
  • <div
      class="uk-child-width-1-4@s uk-flex-center uk-grid-small uk-text-center"
      uk-grid
    >
      <div>
        <div class="uk-card uk-card-body uk-card-default">Item 1</div>
      </div>
      <div class="uk-flex-last">
        <div class="uk-card uk-card-body uk-card-secondary">Item 2</div>
      </div>
      <div>
        <div class="uk-card uk-card-body uk-card-default">Item 3</div>
      </div>
      <div>
        <div class="uk-card uk-card-body uk-card-default">Item 4</div>
      </div>
      <div class="uk-flex-first">
        <div class="uk-card uk-card-body uk-card-primary">Item 5</div>
      </div>
      <div>
        <div class="uk-card uk-card-body uk-card-default">Item 6</div>
      </div>
    </div>

Masonry

If grid cells have different heights, set the masonry option to either pack or next to create a layout free of gaps.

MasonryDescription
packSorts items into columns with the most room to make column heights as equal as possible.
nextUses the natural item order.
<div uk-grid="masonry: pack"></div>
Copy to clipboard
  • Item 1
    Item 2
    Item 3
    Item 4
    Item 5
    Item 6
    Item 7
    Item 8
    Item 9
  • <div class="uk-child-width-1-2@s uk-child-width-1-3@m" uk-grid="masonry: pack">
      <div>
        <div
          class="uk-card uk-card-default uk-flex uk-flex-center uk-flex-middle"
          style="height: 100px"
        >
          Item 1
        </div>
      </div>
      <div>
        <div
          class="uk-card uk-card-default uk-flex uk-flex-center uk-flex-middle"
          style="height: 150px"
        >
          Item 2
        </div>
      </div>
      <div>
        <div
          class="uk-card uk-card-default uk-flex uk-flex-center uk-flex-middle"
          style="height: 300px"
        >
          Item 3
        </div>
      </div>
      <div>
        <div
          class="uk-card uk-card-default uk-flex uk-flex-center uk-flex-middle"
          style="height: 120px"
        >
          Item 4
        </div>
      </div>
      <div>
        <div
          class="uk-card uk-card-default uk-flex uk-flex-center uk-flex-middle"
          style="height: 180px"
        >
          Item 5
        </div>
      </div>
      <div>
        <div
          class="uk-card uk-card-default uk-flex uk-flex-center uk-flex-middle"
          style="height: 250px"
        >
          Item 6
        </div>
      </div>
      <div>
        <div
          class="uk-card uk-card-default uk-flex uk-flex-center uk-flex-middle"
          style="height: 140px"
        >
          Item 7
        </div>
      </div>
      <div>
        <div
          class="uk-card uk-card-default uk-flex uk-flex-center uk-flex-middle"
          style="height: 210px"
        >
          Item 8
        </div>
      </div>
      <div>
        <div
          class="uk-card uk-card-default uk-flex uk-flex-center uk-flex-middle"
          style="height: 200px"
        >
          Item 9
        </div>
      </div>
    </div>

Note You can view more examples in the tests for the Grid Masonry.

Filter and order

Grid items can also be filtered and sorted by category, date or other metadata. Take a look at the Filter component.

Parallax

To move single columns of a grid at different speeds while scrolling, just add parallax: NUMBER to the attribute. The number sets the parallax translation in pixels.

<div uk-grid="parallax: 150"></div>
Copy to clipboard
  • Item
    Item
    Item
    Item
    Item
    Item
    Item
    Item
    Item
    Item
    Item
    Item
  • <div
      class="uk-child-width-1-2@s uk-child-width-1-3@m uk-child-width-1-4@l uk-text-center"
      uk-grid="parallax: 150"
    >
      <div>
        <div class="uk-card uk-card-body uk-card-default">Item</div>
      </div>
      <div>
        <div class="uk-card uk-card-body uk-card-default">Item</div>
      </div>
      <div>
        <div class="uk-card uk-card-body uk-card-default">Item</div>
      </div>
      <div>
        <div class="uk-card uk-card-body uk-card-default">Item</div>
      </div>
      <div>
        <div class="uk-card uk-card-body uk-card-default">Item</div>
      </div>
      <div>
        <div class="uk-card uk-card-body uk-card-default">Item</div>
      </div>
      <div>
        <div class="uk-card uk-card-body uk-card-default">Item</div>
      </div>
      <div>
        <div class="uk-card uk-card-body uk-card-default">Item</div>
      </div>
      <div>
        <div class="uk-card uk-card-body uk-card-default">Item</div>
      </div>
      <div>
        <div class="uk-card uk-card-body uk-card-default">Item</div>
      </div>
      <div>
        <div class="uk-card uk-card-body uk-card-default">Item</div>
      </div>
      <div>
        <div class="uk-card uk-card-body uk-card-default">Item</div>
      </div>
    </div>

To adjust the grid parallax duration, set the parallax-start and parallax-end options. The parallax-start option defines when the animation starts. The default value of 0 means that the grid’s top border and the viewport’s bottom border intersect. The end option defines when the animation ends. The default value of 0 means that the grid’s bottom border and the viewport’s top border intersect. Values can be set in any dimension units, namely vh, % and px. The % unit relates to the grid’s height. Both options allow basic mathematics operands, + and -.

<div uk-grid="parallax: 150; parallax-start: 100%; parallax-end: 100%;"></div>

To justify the grid parallax if columns have different heights, for example in masonry grids, set the parallax-justify: true option so all grid columns reach the bottom at the same time. Set parallax: 0 to only move the columns by their height until they justify. But of course an additional parallax translation value can be set as well.

<div uk-grid="parallax: 0; parallax-justify: true; masonry: pack"></div>
Copy to clipboard
  • Item 1
    Item 2
    Item 3
    Item 4
    Item 5
    Item 6
    Item 7
    Item 8
    Item 9
  • <div
      class="uk-child-width-1-2@s uk-child-width-1-3@m"
      uk-grid="parallax: 0; parallax-justify: true; masonry: pack"
    >
      <div>
        <div
          class="uk-card uk-card-default uk-flex uk-flex-center uk-flex-middle"
          style="height: 100px"
        >
          Item 1
        </div>
      </div>
      <div>
        <div
          class="uk-card uk-card-default uk-flex uk-flex-center uk-flex-middle"
          style="height: 150px"
        >
          Item 2
        </div>
      </div>
      <div>
        <div
          class="uk-card uk-card-default uk-flex uk-flex-center uk-flex-middle"
          style="height: 300px"
        >
          Item 3
        </div>
      </div>
      <div>
        <div
          class="uk-card uk-card-default uk-flex uk-flex-center uk-flex-middle"
          style="height: 120px"
        >
          Item 4
        </div>
      </div>
      <div>
        <div
          class="uk-card uk-card-default uk-flex uk-flex-center uk-flex-middle"
          style="height: 180px"
        >
          Item 5
        </div>
      </div>
      <div>
        <div
          class="uk-card uk-card-default uk-flex uk-flex-center uk-flex-middle"
          style="height: 250px"
        >
          Item 6
        </div>
      </div>
      <div>
        <div
          class="uk-card uk-card-default uk-flex uk-flex-center uk-flex-middle"
          style="height: 140px"
        >
          Item 7
        </div>
      </div>
      <div>
        <div
          class="uk-card uk-card-default uk-flex uk-flex-center uk-flex-middle"
          style="height: 210px"
        >
          Item 8
        </div>
      </div>
      <div>
        <div
          class="uk-card uk-card-default uk-flex uk-flex-center uk-flex-middle"
          style="height: 200px"
        >
          Item 9
        </div>
      </div>
    </div>

Note You can view more examples in the Grid Parallax tests.

Component options

Any of these options can be applied to the component attribute. Separate multiple options with a semicolon. Learn more

OptionValueDefaultDescription
margin Stringuk-grid-marginThis class is added to items that break into the next row, typically to create margin to the previous row.
first-columnStringuk-first-columnThis class is added to the first element in each row.
masonryString, Booleanfalse, pack, nextEnables masonry layout for this grid.
parallaxNumber0Parallax translation value. The value can be in vh, % and px. Falsy disables the parallax effect (default).
parallax-startLength0Start offset. The value can be in vh, % and px. It supports basic mathematics operands + and -. The default value of 0 means that the grid’s top border and viewport’s bottom border intersect.
parallax-endLength0End offset. The value can be in vh, % and px. It supports basic mathematics operands + and -. The default value of 0 means that the grid’s bottom border and the viewport’s top border intersect.
parallax-justifyBooleanfalseWith parallax enabled, all columns will reach the bottom at the same time.

JavaScript

Learn more about JavaScript components.

Initialization

UIkit.grid(element, options);