html – 如何在基础中对齐列

前端之家收集整理的这篇文章主要介绍了html – 如何在基础中对齐列前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我终于开始使用粉底了,这很棒.所以我只是测试了一个例子,我注意到如果连续只有两列,它看起来像这样:

我原本以为“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>

谢谢,

缺口

解决方法

您可以将.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

原文链接:https://www.f2er.com/html/225262.html

猜你在找的HTML相关文章