- 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 Collapsible link
To create a collapsible link in Bootstrap, you can try to run the following code
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 = "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>
- Related Articles
- Bootstrap Collapsible button
- Bootstrap Collapsible panel
- Bootstrap Collapsible in
- Bootstrap Collapsible list group
- Display the collapsible content by default with Bootstrap
- Bootstrap .btn-link class
- Bootstrap alert-link class
- Link Bootstrap List Group Items
- Bootstrap 4 .card-link class
- Indicate collapsible content that can be hidden or shown with Bootstrap
- Disable a pagination link with Bootstrap
- Set typography and link styles in Bootstrap
- Create a button look like a link with Bootstrap
- Collapsible Pane in Tkinter Python
- Add a gray background color to the active link in a default Bootstrap navbar

Advertisements