justify content space around bootstrap code example
Example 1: 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 2: bootstrap justify-content-center for md
<div class="row justify-content-md-center"></div>
Example 3: alighn right boostrap 4
<div class="float-left">Float left on all viewport sizes</div><br>
<div class="float-right">Float right on all viewport sizes</div><br>
<div class="float-none">Don't float on all viewport sizes</div>
Example 4: bootstrap justify-content-center for lg
<div class="row justify-content-lg-center"><div>
Example 5: bootstrap display flex
<div class="d-flex">I'm a flexbox container!</div>