【发布时间】:2016-09-19 17:55:11
【问题描述】:
这是我的html:
<div class="container-fluid">
<div class="row">
<div class="col-sm-6 div1">DIV1</div>
<div class="col-sm-6 div2">DIV2</div>
<div class="col-sm-6 div3">DIV3</div>
<div class="col-sm-6 div4">DIV4</div>
</div>
</div>
这是我的 CSS:
.row div{
height: 100px;
}
.div1{
background: blue;
}
.div2{
background: red;
}
.div3{
background: darkcyan;
}
.div4{
background: cyan;
}
【问题讨论】:
-
在你的 div 中使用 width:100% !important css 属性。
-
看到青色在移动视图的第三个位置