Create responsive layouts quickly with Bootstrap grid, utilities, components, and theming.
Lessons
Slide hidden panels in from the edge of the screen.
Offcanvas is easiest to learn by reading the example, changing it, and observing the result.
<button class="btn btn-primary" data-bs-toggle="offcanvas" data-bs-target="#menu">
Open menu
</button>
<div class="offcanvas offcanvas-start" tabindex="-1" id="menu" aria-labelledby="menuLabel">
<div class="offcanvas-header">
<h5 class="offcanvas-title" id="menuLabel">Menu</h5>
<button type="button" class="btn-close" data-bs-dismiss="offcanvas" aria-label="Close"></button>
</div>
<div class="offcanvas-body">
<a class="d-block py-2" href="#">Dashboard</a>
<a class="d-block py-2" href="#">Settings</a>
</div>
</div>Practice the Offcanvas example in a small scratch file, then explain what changed and why.