Created
October 31, 2021 17:14
-
-
Save julianjupiter/36f951bb1c4151c0503fbf2a6bf91659 to your computer and use it in GitHub Desktop.
Bootstrap Collapse
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8" /> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
<title>Document</title> | |
<!-- CSS only --> | |
<link | |
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" | |
rel="stylesheet" | |
integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" | |
crossorigin="anonymous" | |
/> | |
</head> | |
<body> | |
<div class="container"> | |
<div class="row"> | |
<div class="col"> | |
<p> | |
<a | |
class="btn btn-primary" | |
data-bs-toggle="collapse" | |
href="#collapseExample" | |
role="button" | |
aria-expanded="false" | |
aria-controls="collapseExample" | |
> | |
Link with href | |
</a> | |
<button | |
class="btn btn-primary" | |
type="button" | |
data-bs-toggle="collapse" | |
data-bs-target="#collapseExample" | |
aria-expanded="false" | |
aria-controls="collapseExample" | |
> | |
Button with data-bs-target | |
</button> | |
</p> | |
<div class="collapse" id="collapseExample"> | |
<div class="card card-body"> | |
Some placeholder content for the collapse component. This panel is | |
hidden by default but revealed when the user activates the | |
relevant trigger. | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
<!-- JavaScript Bundle with Popper --> | |
<script | |
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" | |
integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p" | |
crossorigin="anonymous" | |
></script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment