bootstrap4 scss ブレークポイント(sm mdとか)ごとにデザイン変更
1645 ワード
スマホは背景白、それ以外は背景赤。とかやりたい。
参考:https://www.webdesignleaves.com/pr/plugins/bootstrap4_01.html
hoge.scss
@import "~bootstrap/scss/bootstrap";
@include media-breakpoint-down(sm) {
.card {
background-color: white;
}
}
@include media-breakpoint-up(md) {
.card {
background-color: red;
}
}
結果
bootstrapとscssって便利よな。gif、動きます。
Author And Source
この問題について(bootstrap4 scss ブレークポイント(sm mdとか)ごとにデザイン変更), 我々は、より多くの情報をここで見つけました https://qiita.com/r_ishimori/items/f5c8c3f51d6febb9024c著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .