justify content center bootstrap 4 code example
Example 1: align items center bootstrap
<div class="d-flex align-items-start">...</div>
<div class="d-flex align-items-end">...</div>
<div class="d-flex align-items-center">...</div>
<div class="d-flex align-items-baseline">...</div>
<div class="d-flex align-items-stretch">...</div>
Example 2: justify-content-between bootstrap 4
<div class="d-flex justify-content-start">...</div>
<div class="d-flex justify-content-end">...</div>
<div class="d-flex justify-content-center">...</div>
<div class="d-flex justify-content-between">...</div>
<div class="d-flex justify-content-around">...</div>
Example 3: bootstrap col center content
<div class="row">
<div class="col-4 d-flex justify-content-center text-center">
// for image and text
</div>
</div>
Example 4: bootstrap justify-content-center for md
<div class="row justify-content-md-center"></div>
Example 5: ustify-content: flex-end; bootstrap
<div class="d-flex justify-content-end">...</div>
Example 6: flex wrap bootstrap
<div class="d-flex flex-wrap">...</div>