简体   繁体   English

将按钮与文本标题 bootstrap 4 beta 对齐

[英]Align button with text title bootstrap 4 beta

Can someone explain me how to align button with text title using bootstrap 4 beta, I'm sure that this example does not work, because pull-left is changed.有人可以解释我如何使用 bootstrap 4 beta 将button与文本标题对齐,我确定这个例子不起作用,因为pull-left已更改。

I'm using float-left when I tried to align them, but the button is not exactly where it should be, so title should be on the left and button on right in the same line, here is my JSFIDDLE , so can someone explain me who to achieve this with new bootstrap 4 beta.当我尝试对齐它们时,我正在使用float-left ,但按钮不完全是它应该在的位置,所以标题应该在同一行的左侧和右侧的按钮,这是我的JSFIDDLE ,所以有人可以解释一下我是谁用新的引导程序 4 测试版来实现这一目标。

<div class="row justify-content-center">
    <div class="col-6">
      <h5><strong>BLOG TITLE GOES HERE</strong></h5>
      <div class="float-right">
        <button type="button" class="btn btn-outline-secondary">Read more</button>
      </div>
      <p class="blockquote-footer text-primary">By Branko Milosevic</p>
      <p>22.08.2017</p>
      Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry richardson ad squid. 3 wolf moon officia aute, non cupidatat skateboard dolor brunch. Food truck quinoa nesciunt laborum eiusmod. Brunch 3 wolf moon tempor, sunt aliqua put a bird on it squid single-origin coffee nulla assumenda shoreditch et. Nihil anim keffiyeh helvetica, craft beer labore wes anderson cred nesciunt sapiente ea proident. Ad vegan excepteur butcher vice lomo. Leggings occaecat craft beer farm-to-table, raw denim aesthetic synth nesciunt you probably haven't heard of them accusamus labore sustainable VHS.
    </div>
  </div>
<div class="row justify-content-center">
    <div class="col-6">
        <div class="foo">
            <h5><strong>BLOG TITLE GOES HERE</strong></h5>
            <div class="float-right">
                <button type="button" class="btn btn-outline-secondary">Secondary</button>
            </div>
        </div>
        <p class="blockquote-footer text-primary">By Petar Pilipovic</p>
        <p>22.08.2017</p>
        Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry richardson ad squid. 3 wolf moon officia aute, non cupidatat skateboard dolor brunch. Food truck quinoa nesciunt laborum eiusmod. Brunch 3 wolf moon tempor, sunt aliqua put a bird on it squid single-origin coffee nulla assumenda shoreditch et. Nihil anim keffiyeh helvetica, craft beer labore wes anderson cred nesciunt sapiente ea proident. Ad vegan excepteur butcher vice lomo. Leggings occaecat craft beer farm-to-table, raw denim aesthetic synth nesciunt you probably haven't heard of them accusamus labore sustainable VHS.
    </div>
</div>

<style>
.foo { display: flex; justify-content: space-between; }
</style>

https://jsfiddle.net/a6frvp9d/1/ https://jsfiddle.net/a6frvp9d/1/

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM