bootsrap flex center code example
Example 1: centralize div bootstrap
<div class="row align-items-center justify-content-center">
<div class="col">This will be centered vertically and horizontally</div>
</div>
Example 2: flex wrap bootstrap
<div class="d-flex flex-wrap">...</div>