作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我是 Bootstrap 世界的新手,但有一个问题如下。
我了解到可以根据屏幕大小更改列宽,如下所示:
<div class="col-lg-4 col-md-6 col-sm-8 col-xs-12 bg-warning">
<h1>Hello, world!</h1>
This is some text that I wanted to include here.
</div>
最佳答案
Bootstrap 不提供 html 类来执行您的要求,您必须使用提到的 ssc-hrep3 之类的媒体查询。
但是由于您使用的是 bootstrap 4,您可以使用 Sass mixins 来创建媒体查询:
Using media breakpoints in Bootstrap 4-alpha
使用上面链接中的答案示例,您可以进行如下操作:
.bg-warning {
@include media-breakpoint-up(sm) {
background:#fff;
}
@include media-breakpoint-up(md) {
background:#f6f6f6;
}
@include media-breakpoint-up(lg) {
background:#fafafa;
}
}
关于bootstrap-4 - Bootstrap : How to specify different background colours per screen width?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45804559/
我是一名优秀的程序员,十分优秀!