Wake Creators LogoCSS - Components Squid Style
Getting Started
Content
Layout
BreakpointsContainersHow they workDefault containerFluid containersGrid
Forms
Components
Utilities
Styleguide

Container

The Container are based on the Bootstrap 5 grid, see docs here

How they work

Containers are the most basic layout element and are required when using our default grid system. Containers are used to contain, pad, and (sometimes) center the content within them. While containers can be nested, most layouts do not require a nested container.

CSS comes with two different containers:

  • .container, which sets a max-width at each responsive breakpoint
  • .container-fluid, which is width: 100% at all breakpoints

The table below illustrates how each container's max-width across each breakpoint.

Extra small
<576px
Small
≥576px
Medium
≥768px
Large
≥992px
X-Large
≥1200px
XX-Large
≥1400px
.container100%540px720px960px1140px1320px
.container-fluid100%100%100%100%100%100%

Default container

Our default .container class is a responsive, fixed-width container, meaning its max-width changes at each breakpoint.

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

Fluid containers

Use .container-fluid for a full width container, spanning the entire width of the viewport.

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