twitter-bootstrap
Klasy użytkowe
Szukaj…
Generuj klasy .hidden- * dla wszystkich punktów przerwania - SCSS
// Mixin to generate hidden classes
@mixin generate-hidden-classes {
@each $bp in map-keys($grid-breakpoints) {
.hidden-#{$bp} {
@include media-breakpoint-only($bp) {
display: none !important;
}
}
}
}
// Call to the mixin
@include generate-hidden-classes();
Modified text is an extract of the original Stack Overflow Documentation
Licencjonowany na podstawie CC BY-SA 3.0
Nie związany z Stack Overflow