Bootstrap-4 | ||
---|---|---|
breakpoints |
Примеси для min-width:@include media-breakpoint-up(xs) { ... } // min-width: 0 (default) Примеси для max-width:@include media-breakpoint-down(xs) { ... } // max-width: 575.98px Примеси для min-width: и max-width:@include media-breakpoint-only(xs) { ... }
// (0 - 575.98px) Примеси для min-width: и max-width: (заданная примесь)@include media-breakpoint-between(md, xl) { ... }
// (720px -> +) |
$grid-breakpoints: ( |
.container .container-fluid |
.container {
|
$container-max-widths: (
|
.row |
Распределение по флекс-оси.justify-content-center { justify-content: center; } .justify-content-start { justify-content: flex-start; } .justify-content-end { justify-content: flex-end; } .justify-content-around { justify-content: space-around; } .justify-content-between { justify-content: space-between; } Распределение по флекс-оси на ЗАДАННЫХ bp.justify-content-sm-center { justify-content: center; } .justify-content-md-center { justify-content: center; } .justify-content-lg-center { justify-content: center; } .justify-content-xl-center { justify-content: center; } Выравнивание по поперечной оси.align-items-start { align-items: flex-start; } .align-items-end { align-items: flex-end; } .align-items-center { align-items: center; } Убрать padding у .col-.no-gutters -> .col-s { padding: 0; }
|
|
.col |
Деление на РАВНЫЕ колонки на ВСЕХ bp (равномерное, зависит от кол-ва)
Классы.align-self-start { align-self: flex-start; } .align-self-center { align-self: center; } .align-self-end { align-self: flex-end; } ОТОБРАЖЕНИЕ (НАСЛЕДУЮТСЯ от меньших к большим) .d-block { display: block; } .d-none { display: block; } .d-sm-block { display: block; } .d-sm-none { display: block; } Порядок .order-1 { order: 1; } .order-10 { order: 10; } Сдвиг .ml-auto { margin-left: auto; } .mr-auto { margin-right: auto; } .ml-md-auto { margin-left: auto; } .offser-md-3 { margin-left: ...%; } |
$grid-columns: 12 !default;
|