bootstrap page layout classes code example
Example 1: bootstrap container-fluid
Use .container-fluid for a full width container, spanning the entire width of the viewport.
<div class="container-fluid">
...
</div>
Example 2: .col-12 bootstrap
.col-12{
flex: 0 0 100%;
max-width: 100%;
}