我尝试将divs绝对定位在bootstrap col中 -
red{
background-color:red;
}
.grid-item{
position:relative;
}
.about{
position:absolute;
left:20px;
top:20px;
}
.app{
position:absolute;
right:10px;
top:10px;
}
这是我的小提琴: http://jsfiddle.net/nilssi/ah7m2k01/5/
这个位置很好,但我会看到红色背景。
答案 0 :(得分:1)
尝试将height
和width
提供给.red
您可以看到red color
已应用:
.red{
background-color:red;
height:200px;
width:200px;
}
<强> DEMO 强>