align bootstrap grid elementb to left code example
Example 1: bootstrap align right
To aligning div in bootstrap you can use bootstrap classes like
1. float-left
2. float-right
3. float-none
<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 2: .col-12 bootstrap
.col-12{
flex: 0 0 100%;
max-width: 100%;
}