VOOZH about

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

⇱ Blaze UI Input Input-Groups - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Blaze UI Input Input-Groups

Last Updated : 23 Jul, 2025

Blaze UI is a framework-free open-source UI toolkit. It provides a great foundation for building scalable websites faster. Blaze UI comes with a lot of pre-styled components and many utilities so that developers don’t have to build everything from scratch.

In this article we will know about the Input Groups, there are lots of variety in inputs groups. That an input group defines that, there will be multiple input fields in a group. All types of input groups are mentioned and described below:

Blaze UI Input Groups:

  • Inline: This is used to make the input group into a single line
  • Fixed Width: This is used to set the width of a specific input field from the input group.
  • Stacked: This is used to make the input field group's input field stacked one over another.
  • Buttons: This is used to attach a button on the input field, there can be multiple buttons as per requirements.
  • Rounded: This is used to make the input group edge rounded

Syntax:

<div class="c-input-group 
 input-group-types-class">
 ...
</div>

Example 1: Below example illustrates the Blaze UI Input Group using inline, fixed-width, and stacked input groups.

Output:

πŸ‘ Image
Blaze UI Input Groups

Example 2: Below example illustrates the Blaze UI Input Group using rounded and buttons input groups.

Output:

πŸ‘ Image
Blaze UI Input Groups

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

Comment