gpt4 book ai didi

css - 如何在 bootstrap.css 中调整容器大小

转载 作者:行者123 更新时间:2023-12-04 02:23:28 25 4
gpt4 key购买 nike

如何在 bootstrap 中为容器类分配一个固定宽度的属性。我试图为主要容器分配一个宽度值,但是当我调整浏览器大小时,容器的内容变得没有响应。

<body>
<div class="container"> //This is the major container

</div>
</body>

最佳答案

您可以使用 <div class="container-fixed">或您自己的媒体查询,您可以在其中为各种分辨率指定自定义宽度。

这是一个例子

@media (min-width: 768px) {
.my-custom-container{
width:600px;
}
}

@media (min-width: 992px) {
.my-custom-container{
width:720px;
}
}

@media (min-width: 1200px) {
.my-custom-container{
width:900px;
}
}

关于css - 如何在 bootstrap.css 中调整容器大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25437722/

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