--- title: Fixed Grid layout: docs theme: library doc-library: true doc-tab: grid breakpoints: - mobile - tablet - desktop - widescreen - fullhd breadcrumb: - home - documentation - grid - grid-fixed --- {% capture markdown %} If instead of having a minimum column width you want a **fixed** number of columns, wrap your grid in a `fixed-grid` container. By default, this fixed grid has **2 columns**: {% endcapture %} {% include markdown.html content=markdown %} {% capture fixed_count_code %}
Class | Column Count |
---|---|
has-{{ i }}-cols |
{{ i }} |
Column Count | Mobile | Tablet | Desktop | Widescreen | Full HD |
---|---|---|---|---|---|
Until {{ site.data.breakpoints.mobile.to }}px |
From {{ site.data.breakpoints.tablet.from }}px |
From {{ site.data.breakpoints.desktop.from }}px |
From {{ site.data.breakpoints.widescreen.from }}px |
From {{ site.data.breakpoints.fullhd.from }}px |
|
{{ i }} | {% for bp in page.breakpoints %}has-cols-{{ i }}-{{ bp }} |
{% endfor %}