Containers are basic elements of the Bootstrap structure and are required when using our automated grid system.


There are two categories of containers to choose from:

  1. .container
  2. .container-fluid

The .container section provides the container with a modified adjustable width


<div class="container">
  <!-- Content here -->
</div>



The .container-fluid section provides a full-width container, which covers the entire width of the viewing area


<div class="container-fluid">
  ...
</div>