VOOZH about

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

⇱ Blaze UI Overlays - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Blaze UI Overlays

Last Updated : 23 Jul, 2025

Blaze UI is a free and open-source Framework with a lightweight UI Toolkit that provides a great structure for building websites quickly with a scalable and maintainable foundation. All components in Blaze UI are developed mobile-first and rely solely on native browser features, not a separate library or framework. It helps us create a scalable and responsive website quickly and efficiently with a consistent style. 

In this article, we will be seeing Blaze UI Overlay. The overlay component is used in many other components, like modal, to blackout the content of the page. To make use of overlays the c-overlay class is used. By default, the overlays are hidden. To make overlays visible, we can use the c-overlay–visible class.

Syntax:

<div class="c-overlay c-overlay--visible"></div>

Example 1: In the following example, we have not used the c-overlay class.

Output:

👁 Blaze UI Overlays
Blaze UI Overlays

Example 2: In the following example, we have used the c-overlay class with the c-overlay--visible class.

Output:

👁 Blaze UI Overlays
Blaze UI Overlays

Reference: https://www.blazeui.com/components/overlays/

Comment