ItSolutionStuff.com

How to Use Collapse Example in Bootstrap?

By Hardik Savani • November 5, 2023
Bootstrap

Sometimes to require collapse for display large text with title.Always we like to use collapse for data content. So if you think how to use collapse in my project then it is very easy you have to just copy bellow example and run in your local you will find result. In this example i provide bootstrap collapse example with code so it pretty simple to use.

Example:

<html lang="en">

<head>

<title>Bootstrap collapse example</title>

<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet">

<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.js"></script>

<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>

</head>

<body>


<a class="btn btn-danger" role="button" data-toggle="collapse" href="#collapseExp" aria-expanded="false" aria-controls="collapseExp">

Link with href

</a>


<!-- collapse contain -->

<div class="collapse" id="collapseExp">

<div class="well">

<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod

tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,

quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo

consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse

cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non

proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>

</div>

</div>

<!-- collapse contain end -->


</body>

</html>

Hardik Savani

Hardik Savani

I'm a full-stack developer, entrepreneur, and founder of ItSolutionStuff.com. Passionate about PHP, Laravel, JavaScript, and helping developers grow.

📺 Subscribe on YouTube

We Are Recommending You

How to Add Bootstrap 5 in Angular 15?

Read Now →

Angular 14 Bootstrap 5 Datepicker Example

Read Now →

How to Install Bootstrap in Laravel?

Read Now →

How to Use Bootstrap Tabs with Angular?

Read Now →

Angular 9/8 Bootstrap Tabs Example

Read Now →

How to Use Bootstrap Tooltip in Angular?

Read Now →

Angular Bootstrap Timepicker Example

Read Now →

How to use Bootstrap Modal in Angular?

Read Now →

Bootstrap Star Rating using Bootstrap-star-rating JS Example

Read Now →

JQuery Delete Confirm Modal using Bootbox Example

Read Now →

How to Add Dialog Box in Bootstrap?

Read Now →

How to Add Tooltip in Bootstrap?

Read Now →

How to use Datepicker in Bootstrap?

Read Now →