@extends('layouts.master') @section('title')Unikit @endsection @section('body-start')
@endsection @section('content') @section('breadcrumb') @component('components.breadcrumb') @slot('li_1') UI Kit @endslot @slot('title') Grid @endslot @endcomponent @endsectionSee how aspects of the Bootstrap grid system work across multiple devices with a handy table.
|
xs <576px |
sm ≥576px |
md ≥768px |
lg ≥992px |
xl ≥1200px |
xxl ≥1400px |
|
|---|---|---|---|---|---|---|
Container max-width |
None (auto) | 540px | 720px | 960px | 1140px | 1320px |
| Class prefix | .col- |
.col-sm- |
.col-md- |
.col-lg- |
.col-xl- |
.col-xxl- |
| # of columns | 12 | |||||
| Gutter width | 1.5rem (.75rem on left and right) | |||||
| Custom gutters | Yes | |||||
| Nestable | Yes | |||||
| Column ordering | Yes | |||||
Columns collapse at 576px
Columns collapse at 768px
Columns collapse at 992px
Columns collapse at 1200px
Columns collapse at 1400px
Using a single set of .col-sm-* classes, you can create a basic grid system that starts out stacked on extra small devices before becoming horizontal on desktop (medium) devices.
Move columns to the right using .offset-md-* classes.
These classes increase the left margin of a column by * columns.
For example, .offset-md-4 moves .col-md-4 over four columns.
With the move to flexbox in v4, you can use margin utilities like .mr-auto
to force sibling columns away from one another.