Example 1: bootstrap media query breakpoints
@media (max-width: 575.98px) { ... } @media (min-width: 576px) and (max-width: 767.98px) { ... } @media (min-width: 768px) and (max-width: 991.98px) { ... } @media (min-width: 992px) and (max-width: 1199.98px) { ... } @media (min-width: 1200px) { ... }
Example 2: bootstrap media queries
`32` @media (min-width: 576px) { ... } @media (min-width: 768px) { ... } @media (min-width: 992px) { ... } @media (min-width: 1200px) { ... }
Example 3: bootstrap Responsive
Responsive containers are new in Bootstrap v4.4. They allow you to specify a class that is 100% wide until the specified breakpoint is reached, after which we apply max-widths for each of the higher breakpoints. For example, .container-sm is 100% wide to start until the sm breakpoint is reached, where it will scale up with md, lg, and xl. Copy <div class="container-sm">100% wide until small breakpoint</div> <div class="container-md">100% wide until medium breakpoint</div> <div class="container-lg">100% wide until large breakpoint</div> <div class="container-xl">100% wide until extra large breakpoint</div> @media (min-width: 576px) { ... } @media (min-width: 768px) { ... } @media (min-width: 992px) { ... } @media (min-width: 1200px) { ... } Since we write our source CSS in Sass, all our media queries are available via Sass mixins: @include media-breakpoint-up(sm) { ... } @include media-breakpoint-up(md) { ... } @include media-breakpoint-up(lg) { ... } @include media-breakpoint-up(xl) { ... } .custom-class { display: none; } @include media-breakpoint-up(sm) { .custom-class { display: block; } } We occasionally use media queries that go in the other direction (the given screen size or smaller): @media (max-width: 575.98px) { ... } @media (max-width: 767.98px) { ... } @media (max-width: 991.98px) { ... } @media (max-width: 1199.98px) { ... } Once again, these media queries are also available via Sass mixins: Copy @include media-breakpoint-down(xs) { ... } @include media-breakpoint-down(sm) { ... } @include media-breakpoint-down(md) { ... } @include media-breakpoint-down(lg) { ... } @include media-breakpoint-down(md) { .custom-class { display: block; } } $zindex-dropdown: 1000 !default; $zindex-sticky: 1020 !default; $zindex-fixed: 1030 !default; $zindex-modal-backdrop: 1040 !default; $zindex-modal: 1050 !default; $zindex-popover: 1060 !default; $zindex-tooltip: 1070 !default;
Example 4: bootstrap container width
-------------------------------------------------------------------------------------- Bootstrap Container Width | Size | Class Prefix -------------------------------------------------------------------------------------- Extra small devices Phones (less than 768px) | None (auto) | .col-xs- Small devices Tablets (greater than equals 768px) | 750px | .col-sm- Medium devices Desktops (greater than equals 992px) | 970px | .col-md- Large devices Desktops (greater than equals 1200px) | 1170px | .col-lg-
Comments
Post a Comment