Containers

Containers are a fundamental building block of OUDS Web that contain, pad, and align your content within a given device or viewport.

How they work

Containers are the most basic layout element in OUDS Web 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.

OUDS Web provides a single responsive container, .container-fluid, which ensures a width: 100% at all breakpoints. To optimize its use, pair it with the .container-max-width class. For further details, refer to the Fluid containers section.

The table below compares .container-fluid max-width with and without .container-max-width across each breakpoint.

See them in action and compare them in our Grid example and Grid system example.

Please note that we apply an extra-padding on our containers (see our mixin).

2x-small
<390px
X-small
≥390px
Small
≥480px
Medium
≥736px
Large
≥1024px
X-large
≥1320px
2x-large
≥1640px
3x-large
≥1880px
.container-fluid with .container-max-width 100% -
(2 * 16px)
100% -
(2 * 24px)
100% -
(2 * 28px)
100% -
(2 * 32px)
100% -
(2 * 40px)
100% -
(2 * 56px)
1520px 1520px
.container-fluid 100% -
(2 * 16px)
100% -
(2 * 24px)
100% -
(2 * 28px)
100% -
(2 * 32px)
100% -
(2 * 40px)
100% -
(2 * 56px)
100% -
(2 * 80px)
100% -
(2 * 112px)
Bootstrap $enable-bootstrap-compatibility: true
These containers should not be used for Orange websites. Instead, use the containers provided by OUDS Web: .container-fluid associated or not with .container-max-width.

Bootstrap compatibility enables the use of three different containers:

  • .container, which sets a static max-width between each responsive breakpoint.
  • .container-{breakpoint}, which follow the .container-fluid behavior until the specified breakpoint, then it follows the .container one.
  • .container-fluid, which sets the width: 100% at all breakpoints.

Moreover, Bootstrap compatibility includes the support for xxl breakpoint, defined like 2xl, making .container-xxl class available.

The table below illustrates how each container’s max-width compares to the original .container and .container-fluid across each breakpoint.

Please note that we apply an extra-padding on our containers (see our mixin).

2x-small
<390px
X-small
≥390px
Small
≥480px
Medium
≥736px
Large
≥1024px
X-large
≥1320px
2x-large
≥1640px
3x-large
≥1880px
.container 100% -
(2 * 16px)
342px 424px 672px 944px 1208px 1480px 1656px
.container-xs 100% -
(2 * 16px)
342px 424px 672px 944px 1208px 1480px 1656px
.container-sm 100% -
(2 * 16px)
100% -
(2 * 24px)
424px 672px 944px 1208px 1480px 1656px
.container-md 100% -
(2 * 16px)
100% -
(2 * 24px)
100% -
(2 * 28px)
672px 944px 1208px 1480px 1656px
.container-lg 100% -
(2 * 16px)
100% -
(2 * 24px)
100% -
(2 * 28px)
100% -
(2 * 32px)
944px 1208px 1480px 1656px
.container-xl 100% -
(2 * 16px)
100% -
(2 * 24px)
100% -
(2 * 28px)
100% -
(2 * 32px)
100% -
(2 * 40px)
1208px 1480px 1656px
.container-2xl 100% -
(2 * 16px)
100% -
(2 * 24px)
100% -
(2 * 28px)
100% -
(2 * 32px)
100% -
(2 * 40px)
100% -
(2 * 56px)
1480px 1656px
.container-xxl 100% -
(2 * 16px)
100% -
(2 * 24px)
100% -
(2 * 28px)
100% -
(2 * 32px)
100% -
(2 * 40px)
100% -
(2 * 56px)
1480px 1656px
.container-3xl 100% -
(2 * 16px)
100% -
(2 * 24px)
100% -
(2 * 28px)
100% -
(2 * 32px)
100% -
(2 * 40px)
100% -
(2 * 56px)
100% -
(2 * 80px)
1656px
.container-fluid 100% -
(2 * 16px)
100% -
(2 * 24px)
100% -
(2 * 28px)
100% -
(2 * 32px)
100% -
(2 * 40px)
100% -
(2 * 56px)
100% -
(2 * 80px)
100% -
(2 * 112px)

Default container

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

This container should not be used for Orange sites.

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

Responsive containers

Responsive containers allow you to specify a class that follows the .container-fluid behavior until the specified breakpoint is reached, after which we apply max-widths for each of the higher breakpoints. For example, .container-sm behaves like the .container-fluid to start until the sm breakpoint is reached, where it will scale up with md, lg, xl, 2xl, xxl and 3xl.

<div class="container-xs">100% wide until x-small breakpoint</div>
<div class="container-sm">100% wide until small breakpoint</div>
<div class="container-md">100% wide until medium breakpoint</div>
<div class="container-lg">100% wide until large breakpoint</div>
<div class="container-xl">100% wide until x-large breakpoint</div>
<div class="container-2xl">100% wide until 2x-large breakpoint</div>
<div class="container-xxl">100% wide until 2x-large breakpoint</div>
<div class="container-3xl">100% wide until 3x-large breakpoint</div>

Fluid containers

Use .container-fluid for a full width container with minimum margins, spanning almost the entire width of the viewport.

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

Default max width

This container should be associated by default with the class .container-max-width. After breakpoint 2xl, this class:

  • limits the container width to 1680px (including margins),
  • limits container margin to 80px each side,
  • limits gutters width to 32px.

It is defined as follows:

.container-max-width {
  @include media-breakpoint-up(get-breakpoint-from-width()) {
    --#{$prefix}container-margin-x: #{map-get($container-fluid-margin, get-breakpoint-from-width())};
    max-width: $ouds-grid-2xl-max-width-alt;

    .row {
      --#{$prefix}gutter-x: #{map-get($grid-gutter-widths, get-breakpoint-from-width())};
    }
  }
}

Comparison between .container-fluid with .container-max-width and .container-fluid alone can be seen in the following table:

X-large
≥1320px
2x-large
≥1640px
3x-large
≥1880px
.container-fluid
with .container-max-width
  • Width 100% - (2 * 56px)
  • Margin 2 * 56px
  • Gutter 32px
  • Width 100% - (2 * 80px)
  • Max-width 1520px
  • Margin 2 * 80px
  • Gutter 32px
  • Width 1520px
  • Margin 2 * 80px
  • Gutter 32px
.container-fluid
  • Width 100% - (2 * 56px)
  • Margin 2 * 56px
  • Gutter 32px
  • Width 100% - (2 * 80px)
  • Margin 2 * 80px
  • Gutter 32px
  • Width 100% - (2 * 112px)
  • Margin 2 * 112px
  • Gutter 40px

Custom max width

If necessary, in specific cases, you can define a custom maximum width for the fluid container by overriding the $ouds-grid-2xl-max-width-alt variable before importing the OUDS Web SCSS files.

This adjustment will apply to all containers using the .container-max-widthclass, ensuring that your layout stays within the specific width. Once the layout exceeds the $ouds-grid-2xl-max-width-alt value at larger breakpoints, the container’s margins and gutter values will remain unchanged.

@import "../node_modules/@ouds/web/scss/config";
@import "../node_modules/@ouds/web/scss/functions";

$ouds-grid-2xl-max-width-alt: 3500px; // Custom container max width

@import "../node_modules/@ouds/web/scss/tokens/raw";
@import "../node_modules/@ouds/web/scss/tokens/semantic";
@import "../node_modules/@ouds/web/scss/tokens/semantic-colors-custom-props";
@import "../node_modules/@ouds/web/scss/tokens/composite";
@import "../node_modules/@ouds/web/scss/tokens/component";
@import "../node_modules/@ouds/web/scss/variables";
@import "../node_modules/@ouds/web/scss/variables-dark";
// etc

CSS

Sass variables

As shown above, OUDS Web generates a series of predefined container classes to help you build the layouts you desire. You may customize these predefined container classes by modifying the Sass map (found in _variables.scss) that powers them:

$container-max-widths: (
  xs: $ouds-grid-xs-min-width, // 390px
  sm: $ouds-grid-sm-min-width, // 480px
  md: $ouds-grid-md-min-width, // 736px
  lg: $ouds-grid-lg-min-width, // 1024px
  xl: $ouds-grid-xl-min-width, // 1320px
  2xl: $ouds-grid-2xl-min-width, // 1640px
  3xl: $ouds-grid-3xl-min-width, // 1880px
);

$container-fluid-margin: (
  2xs: $ouds-grid-2xs-margin, // 16px
  xs: $ouds-grid-xs-margin, // 24px
  sm: $ouds-grid-sm-margin, // 28px
  md: $ouds-grid-md-margin, // 32px
  lg: $ouds-grid-lg-margin, // 40px
  xl: $ouds-grid-xl-margin, // 56px
  2xl: $ouds-grid-2xl-margin, // 80px
  3xl: $ouds-grid-3xl-margin // 112px
);

For more information and examples on how to modify our Sass maps and variables, please refer to the Sass section of the Grid documentation.

Sass mixins

In addition to customizing the Sass, you can also create your own containers with our Sass mixin.

@mixin make-container($gutter: $container-padding-x) {
  // OUDS mod: no CSS variable gutter definition inside containers
  width: 100%;
  padding-right: var(--#{$prefix}container-margin-x); // OUDS mod: instead of `calc(var(--#{$prefix}gutter-x) * .5)`
  padding-left: var(--#{$prefix}container-margin-x); // OUDS mod: instead of `calc(var(--#{$prefix}gutter-x) * .5)`
  margin-right: auto;
  margin-left: auto;

  // OUDS mod: gutter depends on breakpoints
  @each $breakpoint, $container-fluid-marg in $container-fluid-margin {
    @include media-breakpoint-up($breakpoint) {
      --#{$prefix}container-margin-x: #{$container-fluid-marg};
    }
  }
  // End mod
}
// Usage
.custom-container {
  @include make-container();
}