如何在基础中对齐列

时间:2013-10-19 09:23:34

标签: html css zurb-foundation

我终于开始使用粉底了,这很棒。所以我只是测试了一个例子,我注意到如果连续只有两列,它看起来像这样:

enter image description here

我原以为“Box B”会出现在“Box A”旁边。如何将其与左侧对齐? 我没有读过太多文档(我应该这样),但我想我会问。

如果您需要代码(代码是在下载基础时提供的):

<div class="row">
     <div class="large-4 columns">
         <div class="panel">
             <p>BOX A</p>
         </div>
     </div>
    <div class="large-4 columns">
        <div class="panel">
            <p>BOX B</p>
        </div>
    </div>

</div>

谢谢,

尼克

3 个答案:

答案 0 :(得分:11)

您可以将.end类添加到B列,使其与左侧对齐。

<div class="large-4 columns end">
    <div class="panel">
        <p>BOX B</p>
    </div>
</div>

来源:http://scotch.io/tutorials/css/understanding-zurb-foundation-5s-grid-system

答案 1 :(得分:3)

这是因为基础基础网格必须加起来为12。

  

使用css类创建列:.small-#,。medium-#和.large-#。自基金会使用12网格系统以来,#必须加起来为12。   资料来源:http://scotch.io/tutorials/css/understanding-zurb-foundation-5s-grid-system

将班级更改为大6

答案 2 :(得分:1)

检查您的css是否为class="row"并添加{float:left;}