gpt4 book ai didi

html - Bootstrap - 在较小的 View 中将右列向左移动

转载 作者:行者123 更新时间:2023-11-28 08:31:20 29 4
gpt4 key购买 nike

我正试图找出一种在 Bootstrap 中执行此操作的方法(不完全确定是否可行)。

我有 3 列 - 中央列占容器的 50%,两侧各有 2 个辅助列。

当我调整大小时,我希望最右边的列堆叠在左边的列下面。下图。

Desired output

我已经尝试在最右边的列(如下)上执行 col-sm-offset,但这并不能正常工作。

<div class="container">
<div class="col-sm-3 col-md-3 left">
Left
</div>
<div class="col-sm-6 col-md-9 feed">
Middle
</div>
<div class="col-sm-3 col-md-3 col-sm-offset-1 right">
Right
</div>
</div>

fiddle here

希望有人能帮忙

最佳答案

这不是最漂亮的代码,但它的行为符合您的要求:

html:

<div class="cont">
<div class="col-sm-3 left">
Left
</div>
<div class="col-sm-3 col-sm-offset-6 right">
Right
</div>
</div>
<div class="main">
<div class="feed mini">
Middle
</div>
</div>

CSS:

.left {
background-color: Blue;
}
.feed {
background-color: Red;
}
.right {
background-color: Green
}
.main {
position: relative;
left: 25%;
width: 50%;
}

@media(max-width:767px) {
.cont {
width: 25%;
}
.main {
position: absolute;
top: 0px;
left: 25%;
width: 100%;
}
}

关于html - Bootstrap - 在较小的 View 中将右列向左移动,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28258489/

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