仅用于台式机,LG设备的容器液

时间:2019-06-21 13:13:55

标签: sass bootstrap-4

我想使站点具有bootstrap 4网格系统。我只需要在桌面大小上设置容器流体,如果屏幕小于lg,就可以遵循正常的容器流。

我试图设置以下内容:

@include media-breakpoint-up(xl) { 
    .container {
        width:100%;
        max-width: none;
    }
}

但没有运气。

1 个答案:

答案 0 :(得分:0)

如果您希望container在lg上达到全(100%)宽度,则将'lg'断点传递给mixin ...

@include media-breakpoint-up(lg) { 
    .container {
        width:100%;
        max-width: none;
    }
}

https://www.codeply.com/go/645RLcNcga