如何垂直堆叠 bootstrap 个元素

How to vertically stack bootstrap elements

我有一个 header、段落和图像,我希望它们与段落上方的 header 和右侧的图像对齐。当我 运行 它时,我得到水平行中的 3 个元素

<div class="container">
    <div class="row">
        <h1 class="col-xs-3 paddingtop">Joselin</h1>
        <p class="col-xs-3 bio">
            Growing up in the Caribbean, as a young girl Joselin worked as a
            coffee bean picker, giving her a profound insight into using only
            the freshest, and highest quality coffee beans.
        </p>
        <img class="col-xs-6 meetus" src="meetus.jpeg">      
    </div>
</div>

如果 h1 应该在 pimg 之上,最好将它放在自己的行中:<div class="row">。然后把 pimg 排成一行,就在那个下面。

<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css" rel="stylesheet"/>

<div class="container">
    <div class="row">
        <div class="col-xs-6">
            <h1 class="paddingtop">Joselin</h1>
            <p class="bio">
                Growing up in the Caribbean, as a young girl Joselin worked as a
                coffee bean picker, giving her a profound insight into using only
                the freshest, and highest quality coffee beans.
            </p>
        </div>
        <div class="col-xs-6">
            <img class="col-xs-6 meetus" src="meetus.jpeg">      
        </div>
    </div>
</div>

然后您可以调整列大小 (`class="col-xs-3")。