Bootstrap Collapsible panel


To create a collapsible panel in Bootstrap, use the panel-collapse class.

You can try to run the following code to create a collapsible panel

Example

Live Demo

<!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 = "container">
         <h2>Tutorials</h2>
         <p>Click below...</p>
         <div class = "panel-group">
            <div class = "panel panel-default">
               <div class = "panel-heading">
                  <h4 class = "panel-title">
                     <a data-toggle = "collapse" href = "#test">Free learning content</a>
                  </h4>
               </div>
               <div id = "test" class = "panel-collapse collapse">
                  <div class = "panel-body">We provide free learning content and quizzes as well.</div>
                  <div class = "panel-footer">Copyright 2018</div>
               </div>
            </div>
         </div>
      </div>
   </body>
</html>

Samual Sam
Samual Sam

Learning faster. Every day.

Updated on: 12-Jun-2020

2K+ Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements