gpt4 book ai didi

css - 使用 Bootstrap 混合容器和容器流体

转载 作者:行者123 更新时间:2023-11-28 10:40:42 25 4
gpt4 key购买 nike

我想为所有 xs、sm 和 md 屏幕显示我的固定站点,但对于 lg 屏幕,我希望我的站点流畅。从 bootstrap grid ssytem 我发现我可以使用 .container 类来固定宽度或使用 .container-fluid 来处理流体。那么如何针对不同的屏幕定位不同的容器呢?

最佳答案

您可以像这样使用 CSS 媒体查询在最小的屏幕上指定特定(固定)宽度。对于 Bootstrap,xs 的阈值是 768 像素..

@media (max-width: 768px) {
.container-fluid {
width:760px; /* set fixed width */
}
}

http://www.bootply.com/131026

关于css - 使用 Bootstrap 混合容器和容器流体,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23147848/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com