VOOZH about

URL: https://www.geeksforgeeks.org/css/blaze-ui-container-sizes/

⇱ Blaze UI Container sizes - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Blaze UI Container sizes

Last Updated : 23 Jul, 2025

Blaze UI is a framework-free open source UI toolkit that uses JavaScript components to build great user interfaces. It is the same as a bootstrap for use and has excellent different elements to use to make your website look more amazing. This framework allows us to use various of its styles and properties to make a website more user-friendly.

Blaze UI provides Containers to add data with responsive stylings. Containers provide media query screen width restrictions on the content. There are six sizes offered by the Blaze UI Containers, xsmall, small, medium, large, xlarge, and super. 

Containers are based on the following screen size variables:

  • $screen-width-xsmall: In this, the screen width will be 20em;
  • $screen-width-small: In this, the screen width will be 30em;
  • $screen-width-medium: In this, the screen width will be 48em;
  • $screen-width-large: In this, the screen width will be 64em;
  • $screen-width-xlarge: In this, the screen width will be 78em;
  • $screen-width-super: In this, the screen width will be 116em;

Blaze-UI Container Class:

  • o-container: This class is used to add Blaze UI Container.
  • o-container--xsmall: This class is used to add a container with a width of 20em.
  • o-container--small: This class is used to add a container with a width of 30em.
  • o-container--medium: This class is used to add a container with a width of 48em.
  • o-container--large: This class is used to add a container with a width of 64em.
  • o-container--xlarge: This class is used to add a container with a width of 78em.
  • o-container--super: This class is used to add a container with a width of 116em.

Syntax:

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

Example 1: The following code demonstrates the Blaze UI Container xsmall, and small size using provided classes.

Output:

👁 Image
 

Example 2: The following code demonstrates the Blaze UI Container medium, and large size using provided classes.

Output: 

👁 Image
 

Example 3: The following code demonstrates the Blaze UI Container xlarge and super size using provided classes.

Output:

👁 Image
 

Reference: https://www.blazeui.com//objects/containers/

Comment