我在引导程序中遇到了这个问题,我试图在 2 个 .span6 div 上设置背景颜色,但背景泄漏到左侧的边距中。
有什么方法可以防止这种情况发生?以下是使用的 HTML。
<div class="row">
<div class="featured-post">
<div class="span6">
<!-- thumbnail image here -->
</div>
<div class="span6">
<!-- text here -->
</div>
</div>
</div>
这是 .featured-post div 的 css。
.featured-post {
margin-bottom: 15px;
background-color: rgba(0, 0, 0, 0.5);
min-height: 320px;
}