作者热门文章
- objective-c - iOS 5 : Can you override UIAppearance customisations in specific classes?
- iphone - 如何将 CGFontRef 转换为 UIFont?
- ios - 以编程方式关闭标记的信息窗口 google maps iOS
- ios - Xcode 5 - 尝试验证存档时出现 "No application records were found"
我想像这样创建具有两个重叠列的单行:
.row
.col-sm-7
.col-sm-6
这样网格的第 6 列就会重叠。
使用 .col-sm-pull-1
部分可行:
.row
.col-sm-6
.col-sm-6.col-sm-pull-1
但是第 12 列变为空。我试过:
.row
.col-sm-6
.col-sm-7.col-sm-pull-1
但是第二列移到下一行。
我找到了 Bootstrap 2 ( How to overlap columns using twitter bootstrap? ) 的答案。 Bootstrap 3 有可能吗?
最佳答案
在看到您的图片示例后,我想这也许就是您要找的东西。 (我让它们重叠 2 列,因为这样会更好地居中)
.blue{
background-color: rgba(0,0,255,0.5);;
}
.row .red{
background-color: rgba(255,0,0,0.5);
position: absolute;
}
.red, .blue {
height: 70px;
}
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css" rel="stylesheet"/>
<div class="container">
<div class="row">
<div class="red col-xs-7"></div>
<div class="blue col-xs-7 col-xs-push-5"></div>
</div>
</div>
关于css - 如何在 Bootstrap 3 中重叠列?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33713284/
我是一名优秀的程序员,十分优秀!