bootstrap col 6 code example
Example 1: bootstrap grid
<div class="container">
<div class="row">
<div class="col-sm">
One of three columns
</div>
<div class="col-sm">
One of three columns
</div>
<div class="col-sm">
One of three columns
</div>
</div>
</div>
Example 2: .col-6 bootstrap
.col-6{
flex: 0 0 50%;
max-width: 50%;
}
Example 3: .col-12 bootstrap
.col-12{
flex: 0 0 100%;
max-width: 100%;
}
Example 4: .row bootstrap
.row{
display: flex;
flex-wrap: wrap;
margin-right: -15px;
margin-left: -15px;
}