- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Bootstrap Panel with List groups
Include list groups within any panel. Create a panel by adding class .panel to the <div> element. Also, add class .panel-default to this element. Now within this panel include your list groups.
You can try to run the following code to set panel with list groups −
Example
<!DOCTYPE html> <html> <head> <title>Bootstrap Example</title> <link href = "/bootstrap/css/bootstrap.min.css" rel = "stylesheet"> <script src = "/scripts/jquery.min.js"></script> <script src = "/bootstrap/js/bootstrap.min.js"></script> </head> <body> <div class = "panel panel-default"> <div class = "panel-heading">Panel heading</div> <div class = "panel-body"> <p>The following is a list of topics in Java.</p> </div> <ul class = "list-group"> <li class = "list-group-item">Java Interfaces</li> <li class = "list-group-item">Java Packages</li> <li class = "list-group-item">File Handling in Java</li> </ul> </div> </body> </html>
- Related Articles
- Include list groups within any Bootstrap Panel
- Set Bootstrap Panel with Footer
- Set Bootstrap Panel with Heading
- Bootstrap Collapsible panel
- Bootstrap panel class
- Nest button groups with Bootstrap
- Bootstrap panel-title class
- Bootstrap class panel-body
- Bootstrap panel-footer class
- Bootstrap panel-default class
- Bootstrap panel-heading class
- Usage of Bootstrap panel-default
- Usage of Bootstrap class panel-warning
- Usage of Bootstrap class panel-success
- Usage of Bootstrap class panel-info

Advertisements