twitter-bootstrap
ユーティリティクラス
サーチ…
すべてのブレークポイントに対して.hidden- *クラスを生成する - 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
ライセンスを受けた CC BY-SA 3.0
所属していない Stack Overflow