Skip to content
geeksforgeeks
  • Tutorials
    • Python
    • Java
    • Data Structures & Algorithms
    • ML & Data Science
    • Interview Corner
    • Programming Languages
    • Web Development
    • CS Subjects
    • DevOps And Linux
    • School Learning
    • Practice Coding Problems
  • Courses
    • DSA to Development
    • Get IBM Certification
    • Newly Launched!
      • Master Django Framework
      • Become AWS Certified
    • For Working Professionals
      • Interview 101: DSA & System Design
      • Data Science Training Program
      • JAVA Backend Development (Live)
      • DevOps Engineering (LIVE)
      • Data Structures & Algorithms in Python
    • For Students
      • Placement Preparation Course
      • Data Science (Live)
      • Data Structure & Algorithm-Self Paced (C++/JAVA)
      • Master Competitive Programming (Live)
      • Full Stack Development with React & Node JS (Live)
    • Full Stack Development
    • Data Science Program
    • All Courses
  • Bootstrap
  • Tailwind
  • Bulma
  • Foundation
  • Primer
  • Spectre
  • Onsen UI
  • Semantic UI
  • Pure CSS
  • Materialize
  • SASS
  • LESS
  • Blaze UI
  • CSS Frameworks
  • Color Picker
  • CSS
  • CSS Formatter
  • Web Technology
Open In App
Next Article:
Blaze UI Images
Next article icon

Blaze UI Panels

Last Updated : 27 Apr, 2022
Comments
Improve
Suggest changes
Like Article
Like
Report

Blaze UI is a free open source 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 to create a scalable and responsive website fast and efficiently with a consistent style.

A panel is a very useful component for any layout as it provides a manageable scrollable space within the existing structure of our web page. The panel size can be increased or decreased just by just setting its height. In this article, we will see about Panels in Blaze UI.

Blaze UI Panels classes:

  • o-panel-container: This class creates a container for panels on the web page.
  • o-panel: This class is used to create a panel within your web page.

Syntax:

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

Example 1: Below example demonstrates the panel in Blaze UI.

HTML
<!DOCTYPE html> <html lang="en">  <head>     <meta charset="UTF-8" />     <meta http-equiv="X-UA-Compatible" content="IE=edge" />     <meta name="viewport" content=         "width=device-width, initial-scale=1.0" />     <link rel="stylesheet" href= "https://unpkg.com/@blaze/[email protected]/dist/blaze/blaze.css" /> </head>  <body>     <div class="u-centered">         <h2 style="color:green">GeeksforGeeks</h2>         <h3>Panel in Blaze UI</h3>     </div>     <div class="o-panel-container o-container         o-container--xlarge" style="height: 100px">         <div class="o-panel">             GeeksforGeeks is a portal for geeks.              It is a place where you can learn,             share and get help from other geeks.              Find various things on the portal             like Jobs, Hackathons, Programming              Competitions, Coding Questions, etc.             You can also learn various things              like programming languages,             algorithms, data structures, etc.              You can also ask questions to other             geeks and get help from them.              GeeksforGeeks is a portal for geeks.              It is a place where you can learn,              share and get help from other geeks.              Find various things on the portal              like Jobs, Hackathons, Programming             Competitions, Coding Questions, etc.              You can also learn various things             like programming languages, algorithms,              data structures, etc. You can             also ask questions to other geeks and              get help from them. GeeksforGeeks             is a portal for geeks. It is a place              where you can learn, share and get             help from other geeks. Find various              things on the portal like Jobs,             Hackathons, Programming Competitions,              Coding Questions, etc. You can             also learn various things like              programming languages, algorithms, data             structures, etc.         </div>     </div> </body>  </html> 

Output:

 

Example 2: Another example demonstrating panel in Blaze UI.

HTML
<!DOCTYPE html> <html lang="en">  <head>     <meta charset="UTF-8" />     <meta http-equiv="X-UA-Compatible" content="IE=edge" />     <meta name="viewport" content=         "width=device-width, initial-scale=1.0" />     <link rel="stylesheet" href= "https://unpkg.com/@blaze/[email protected]/dist/blaze/blaze.css" /> </head>  <body>     <div class="u-centered">         <h2 style="color:green">             GeeksforGeeks         </h2>                  <h3>Panel in Blaze UI</h3>     </div>      <div class="o-panel-container o-container          o-container--small" style="height:200px">         <div class="o-panel">             GeeksforGeeks is a portal for geeks.              It is a place where you can learn,             share and get help from other geeks.              Find various things on the portal             like Jobs, Hackathons, Programming              Competitions, Coding Questions, etc.             You can also learn various things              like programming languages, algorithms,              data structures, etc. You can also              ask questions to other geeks and get              help from them. GeeksforGeeks is              a portal for geeks. It is a place              where you can learn, share and get              help from other geeks. Find             various things on the portal              like Jobs, Hackathons, Programming             Competitions, Coding Questions,              etc. You can also learn various things             like programming languages,              algorithms, data structures, etc. You can             also ask questions to other geeks              and get help from them.             Find various things on the portal             like Jobs, Hackathons, Programming              Competitions, Coding Questions, etc.             You can also learn various things              like programming languages,             algorithms, data structures, etc.              GeeksforGeeks is a portal for geeks.              It is a portal for geeks.         </div>     </div> </body>  </html> 

Output:

 

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


Next Article
Blaze UI Images

T

tarunsinghwap7
Improve
Article Tags :
  • Web Technologies
  • CSS
  • Blaze-UI
  • Blaze-UI Object

Similar Reads

    Blaze UI
    Blaze UI is a free & open-source (MIT Licence) 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
    3 min read
    Blaze UI Introduction
    Blaze UI is a free & open-source (MIT Licence) 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
    3 min read

    Blaze UI Objects

    Blaze UI Containers
    Blaze UI is a free, open-source UI toolkit to build a great website. It provides you with various features like responsiveness, custom components, etc. There are various sizes of containers available in the Blaze UI framework that the users can use in their web applications to organize the paragraph
    5 min read
    Blaze UI Panels
    Blaze UI is a free open source 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 to c
    3 min read
    Blaze UI Images
    Blaze UI is a free open source 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 to c
    2 min read
    Blaze UI Drawers
    Blaze UI is a free open-source 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 to c
    3 min read
    Blaze UI Medias
    Blaze UI is a free, open-source UI toolkit to build a great website. It provides you with various features like responsiveness, custom components, etc.  Media objects are mostly used for comment engines and other images and related text displays. With media objects, we can add images, and texts like
    3 min read
    Blaze UI Objects Complete Reference
    Blaze UI is a free & open-source (MIT Licence) Framework with a lightweight UI Toolkit that provides a great structure for building websites quickly with a scalable and maintainable foundation Blaze UI Objects List: Blaze UI Containers Blaze UI Container sizesBlaze UI Containers NestingBlaze UI
    1 min read

    Blaze UI Components

    Blaze UI Addresses
    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 prop
    2 min read
    Blaze UI Autocomplete
    Blaze UI is a free open-source UI toolkit that provides a strong and maintainable foundation to develop scalable web solutions. All the components of Blaze UI are developed mobile-first and rely on native browser features, not on any additional library or framework. Blaze UI provides autocomplete fe
    2 min read
    Blaze UI Avatars
    Blaze UI is a free and open-source user interface toolkit that provides a strong foundation to build maintainable and scalable websites. All of its components are developed mobile-first and are fully responsive which works on devices of any screen size. In this article, we will be seeing Blaze UI Av
    6 min read
    Blaze UI Back to top
    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 great different elements to use to make your website look more amazing. This framework allows us to use various of its styles and properti
    2 min read
    Blaze UI Badges
    Blaze UI is a free open-source 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 to c
    3 min read
    Blaze UI Breadcrumbs
    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 great different elements to use to make your website look more amazing. This framework allows us to use various of its styles and properti
    2 min read
    Blaze UI Calendars
    Blaze UI is a CSS open-source framework. It is a lightweight UI toolkit that provides great tools for building customized and scalable applications. It can work with any framework that exists. It can adapt to any ecosystem. All designs or CSS are mobile-first and hence responsive. Its project is ava
    2 min read
    Blaze UI Counter
    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 prop
    2 min read
    Blaze UI Divider
    Blaze UI is a free open-source 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 to c
    2 min read
    Blaze UI Headings
    Blaze UI is a free open-source 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 to c
    2 min read
    Blaze UI Lists
    Blaze UI is a free open source 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 to c
    2 min read
    Blaze UI Ranges
    Blaze UI is a user interface toolkit that helps developers to build maintainable websites by using its components. All of its components are mobile-first and scale accordingly based on screen size. Blaze UI Ranges are known as sliders, basically, it is used to specify the range of values when we dra
    2 min read
    Blaze UI Sticky
    Blaze UI is a CSS open-source lightweight UI toolkit that provides great tools for building customized and scalable applications. It can work with any framework that exists. It can adapt to any ecosystem. All designs or CSS are mobile-first and hence responsive. Blaze UI Sticky is used to pin some u
    3 min read
    Blaze UI Toasts
    Blaze UI is a CSS open-source framework. It is a lightweight UI toolkit and provides great tools for building customized and scalable applications. It can work with any framework that exists. It can adapt to any ecosystem. All designs or CSS are mobile-first and hence responsive. It project is avail
    3 min read
    Blaze UI Toggles
    Blaze UI is a CSS open-source framework. It is a lightweight UI toolkit and provides great tools for building customized and scalable applications. It can work with any framework that exists. It can adapt to any ecosystem. All designs or CSS are mobile-first and hence responsive. It project is avail
    3 min read
    Blaze UI Tooltips
    Blaze UI is a CSS open-source framework. It is a lightweight UI toolkit and provides great tools for building customized and scalable applications. It can work with any framework that exists. It can adapt to any ecosystem. All designs or CSS are mobile-first and hence responsive. Its project is avai
    3 min read
    Blaze UI Trees
    Blaze UI is a free open source 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 to c
    2 min read
    Blaze UI Components Complete Reference
    Blaze UI is a free & open-source (MIT License) Framework with a lightweight UI Toolkit that provides a great structure for building websites quickly with a scalable and maintainable foundation Blaze UI Components List: Blaze UI Accordions Blaze UI Addresses Blaze UI Alerts Blaze UI Alerts Attrib
    3 min read

    Blaze UI Utilities

    Blaze UI Alignment
    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 impressive. This framework allows us to use various of its styles and p
    3 min read
    Blaze UI Boxing
    Blaze UI is a CSS open-source framework. It is a lightweight UI toolkit and provides great tools for building customized and scalable applications. It can work with any framework that exists. It can adapt to any ecosystem. All designs or CSS are mobile-first and hence responsive. Its project is avai
    3 min read
    Blaze UI Elevation
    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. All of its components rely solely on native
    2 min read
    Blaze UI Sizes
    Blaze UI is a free open source 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 to c
    3 min read
    Blaze UI Visibility
    Blaze UI is a responsive front-end framework and a free open-source UI toolkit utilized to make sites easily. It provides us with an outstanding structure that helps us to form a strong and maintainable foundation for websites. All the components are developed keeping mobile responsiveness a priorit
    4 min read
    Blaze UI Utilities Complete Reference
    Blaze UI is a free & open-source (MIT License) Framework with a lightweight UI Toolkit that provides a great structure for building websites quickly with a scalable and maintainable foundation Blaze UI Utilities List: Blaze UI Alignment Blaze UI Centered AlignmentBlaze UI Alignment Vertical Blaz
    2 min read
geeksforgeeks-footer-logo
Corporate & Communications Address:
A-143, 7th Floor, Sovereign Corporate Tower, Sector- 136, Noida, Uttar Pradesh (201305)
Registered Address:
K 061, Tower K, Gulshan Vivante Apartment, Sector 137, Noida, Gautam Buddh Nagar, Uttar Pradesh, 201305
GFG App on Play Store GFG App on App Store
Advertise with us
  • Company
  • About Us
  • Legal
  • Privacy Policy
  • In Media
  • Contact Us
  • Advertise with us
  • GFG Corporate Solution
  • Placement Training Program
  • Languages
  • Python
  • Java
  • C++
  • PHP
  • GoLang
  • SQL
  • R Language
  • Android Tutorial
  • Tutorials Archive
  • DSA
  • Data Structures
  • Algorithms
  • DSA for Beginners
  • Basic DSA Problems
  • DSA Roadmap
  • Top 100 DSA Interview Problems
  • DSA Roadmap by Sandeep Jain
  • All Cheat Sheets
  • Data Science & ML
  • Data Science With Python
  • Data Science For Beginner
  • Machine Learning
  • ML Maths
  • Data Visualisation
  • Pandas
  • NumPy
  • NLP
  • Deep Learning
  • Web Technologies
  • HTML
  • CSS
  • JavaScript
  • TypeScript
  • ReactJS
  • NextJS
  • Bootstrap
  • Web Design
  • Python Tutorial
  • Python Programming Examples
  • Python Projects
  • Python Tkinter
  • Python Web Scraping
  • OpenCV Tutorial
  • Python Interview Question
  • Django
  • Computer Science
  • Operating Systems
  • Computer Network
  • Database Management System
  • Software Engineering
  • Digital Logic Design
  • Engineering Maths
  • Software Development
  • Software Testing
  • DevOps
  • Git
  • Linux
  • AWS
  • Docker
  • Kubernetes
  • Azure
  • GCP
  • DevOps Roadmap
  • System Design
  • High Level Design
  • Low Level Design
  • UML Diagrams
  • Interview Guide
  • Design Patterns
  • OOAD
  • System Design Bootcamp
  • Interview Questions
  • Inteview Preparation
  • Competitive Programming
  • Top DS or Algo for CP
  • Company-Wise Recruitment Process
  • Company-Wise Preparation
  • Aptitude Preparation
  • Puzzles
  • School Subjects
  • Mathematics
  • Physics
  • Chemistry
  • Biology
  • Social Science
  • English Grammar
  • Commerce
  • World GK
  • GeeksforGeeks Videos
  • DSA
  • Python
  • Java
  • C++
  • Web Development
  • Data Science
  • CS Subjects
@GeeksforGeeks, Sanchhaya Education Private Limited, All rights reserved
We use cookies to ensure you have the best browsing experience on our website. By using our site, you acknowledge that you have read and understood our Cookie Policy & Privacy Policy
Lightbox
Improvement
Suggest Changes
Help us improve. Share your suggestions to enhance the article. Contribute your expertise and make a difference in the GeeksforGeeks portal.
geeksforgeeks-suggest-icon
Create Improvement
Enhance the article with your expertise. Contribute to the GeeksforGeeks community and help create better learning resources for all.
geeksforgeeks-improvement-icon
Suggest Changes
min 4 words, max Words Limit:1000

Thank You!

Your suggestions are valuable to us.

What kind of Experience do you want to share?

Interview Experiences
Admission Experiences
Career Journeys
Work Experiences
Campus Experiences
Competitive Exam Experiences