没有行的bootstrap列比行填充更多的列

时间:2016-05-20 10:15:29

标签: html css twitter-bootstrap

我使用自举网格系统来布局模态。

显示商店的模式部分不能有行,因为它只是商店中的foreach商店,因此我无法在它们之间插入行。这很好,除了它似乎在列不在行内时添加更多填充,这导致我的商店不与上面的内容垂直对齐。这就是我的意思(商店是纯白色的div):

enter image description here

商店的填充比上面的内容更多。商店没有连续。

一家商店的代码:

<script type="text/html" id="shop-template">
    <div class="col-sm-6" style="">
        <div style="height: 200px;width:100%; background: #fff;border-radius:15px;padding: 25px;">
            <h6 class="medium-text shop-info" 
                data-bind="text: name" >
            </h6>
            <h6 class="medium-text shop-info" 
                data-bind="text: suburb" 
                style="">
            </h6>
            <h6 class="medium-text shop-info" 
                data-bind="text: streetNumber" style="display:inline;">
            </h6>
            <h6 class="medium-text shop-info" 
                data-bind="text: street" style="display:inline;">
            </h6>
            <h6 class="medium-text shop-info" 
                data-bind="text: country" >
            </h6>
            <h6 class="medium-text shop-info" 
                data-bind="text: postalCode" >
            </h6>
        </div>
    </div>
</script>

如何使商店与上面的内容垂直对齐?

2 个答案:

答案 0 :(得分:1)

您不需要将它们分成多行 - 只需在它们周围放置一个单行元素就可以解决填充问题。

只有两个col-sm-6列彼此相邻的空间,所以无论如何,以下两列将成对出现。

(列可能有一些额外的上/下边距,或者 - 外行的填充可能需要添加以使其看起来不错。)

答案 1 :(得分:0)

这是因为Bootstrap具有以下规则

.row {
  margin-left: -15px;
  margin-right: -15px;
}

.col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-xs-1, .col-xs-10, .col-xs-11, .col-xs-12, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9 {
  padding-left: 15px;
  padding-right: 15px;
}

我建议你添加.row's但是如果你不能这样做,那么就改成了col的填充。