align a column to the center of the row 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: align eliment in center of row bootstrap

<div class="row justify-content-center">
  ...inner divs and content...
</div>

Example 3: bootstrap center align columns

<!-- Center columns in a Row -->
<div class="row d-flex justify-content-center text-center">
    <div class="col-4">
        // Add Content
    </div>
    <div class="col-4">
        // Add Content
    </div>
    <div class="col-4">
        // Add Content
    </div>
</div>

Tags:

Css Example