center horizontally div bootstrap 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: bootstrap center button horizontally
<button type="submit" class="btn btn-primary mx-auto d-block">Submit</button>