简体   繁体   中英

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.

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.

<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/

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

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