- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
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
Include list groups within any Bootstrap Panel
To include list groups within Bootstrap 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.
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">Tutorials</div> <div class = "panel-body"> <p>List of tutorials</p> </div> <ul class = "list-group"> <li class = "list-group-item">C</li> <li class = "list-group-item">Java</li> <li class = "list-group-item">Ruby</li> <li class = "list-group-item">C++</li> </ul> </div> </body> </html>
- Related Articles
- Bootstrap Panel with List groups
- Create a table within a Bootstrap Panel
- Bootstrap panel class
- Bootstrap Collapsible panel
- Bootstrap panel-heading class
- Bootstrap panel-title class
- Bootstrap class panel-body
- Bootstrap panel-footer class
- Bootstrap panel-default class
- Set Bootstrap Panel with Heading
- Usage of Bootstrap panel-default
- Set Bootstrap Panel with Footer
- Usage of Bootstrap class panel-danger
- Usage of Bootstrap class panel-primary
- Usage of Bootstrap class panel-warning

Advertisements