Indicate collapsible content that can be hidden or shown with Bootstrap


Use the .collapse class in Bootstrap to indicate collapsible content that can be hidden or shown

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>More learning content</h2>
         <a href = "#test" class="btn btn-info" data-toggle = "collapse">More</a>
         <div id = "test" class = "collapse">
            We have learning content on Java, PHP, Ruby, C, C++, etc.
         </div>
      </div>
   </body>
</html>

karthikeya Boyini
karthikeya Boyini

I love programming (: That's all I know

Updated on: 12-Jun-2020

60 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements